-
Notifications
You must be signed in to change notification settings - Fork 15
/
pyproject.toml
executable file
·55 lines (49 loc) · 1.05 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[project]
name = "panza_mail"
version = "2024.08.14"
description = "A personal email assistant, trained and running on-device."
dependencies = [
"torch==2.2.2",
"ollama",
"omegaconf",
"fastapi",
"uvicorn",
"pydantic",
"python-dotenv",
"hydra-core",
"langchain",
"langchain-community",
"sentence-transformers",
"faiss-cpu",
"gradio",
"mauve-text",
"evaluate",
"torchmetrics",
"nltk",
"accelerate",
]
[project.optional-dependencies]
training = [
"langdetect",
"fire",
"gradio",
"cmake",
"packaging",
"llm-foundry@git+https://github.com/IST-DASLab/llm-foundry@panza-release",
"peft@git+https://github.com/IST-DASLab/peft-rosa.git@grad_quant_looser_versioning",
"spops-sm-80",
]
contributing = [
"pre-commit",
]
[build-system]
requires = ["setuptools >= 61.0.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
line-length = 100
[tool.pytest.ini_options]
pythonpath = ["src"]
[dev-dependencies]
pytest = "*"