-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
61 lines (54 loc) · 1.34 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
56
57
58
59
60
61
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "modular-agents"
version = "0.0.1"
description = "Modular agents"
package-mode = false
readme = "README.md"
license = "Apache-2.0"
authors = ["Martin Krasser <[email protected]>"]
[tool.poetry.dependencies]
accelerate = "^0.30.1"
bitsandbytes = "^0.43.1"
chromadb = "^0.5"
datasets = "^2.19"
jsonargparse = "^4.28"
jsonref = "^1.1"
langchain = "^0.1.20"
langchain-experimental = "^0.0.58"
notebook = "^7.1"
numexpr = "^2.8"
openai = "^1.30"
pandas = "^1.3"
peft = "^0.11.1"
python = "^3.10,<3.13"
python-dotenv = "^1.0"
requests = "^2.32"
safetensors = "^0.4.3"
sentence-transformers = "^2.7"
sentencepiece = "^0.2.0"
torch = "~2.2"
transformers = "^4.41"
trl = "^0.9.4"
unstructured = "^0.14.2"
sqlitedict = "^2.1.0"
faiss-cpu = "^1.8.0"
usearch = "^2.12.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.7"
invoke = "^2.2"
pytest = "^8.2"
[tool.ruff]
line-length = 120
exclude = ["gba/client/grammar.py"]
[tool.ruff.lint.per-file-ignores]
"**/__init__.py" = ["F401"]
[[tool.mypy.overrides]]
module = ["requests"]
ignore_missing_imports = true
[tool.pytest.ini_options]
searxng_endpoint = "http://localhost:8080"
llama3_instruct_endpoint = "http://localhost:8084/completion"
mistral_instruct_endpoint = "http://localhost:8081/completion"