-
Notifications
You must be signed in to change notification settings - Fork 213
/
pyproject.toml
72 lines (58 loc) · 1.51 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
62
63
64
65
66
67
68
69
70
71
72
[tool.poetry]
name = "adalflow-project"
version = "0.1.0"
description = "A project to develop and test the adalflow library"
authors = ["Your Name <[email protected]>"]
license = "MIT"
packages = [
{ from = ".", include = "use_cases" },
{ from = ".", include = "tutorials" },
{ from = ".", include = "benchmarks" },
]
# if you cant import package, use export PYTHONPATH=$(pwd):$PYTHONPATH
[tool.poetry.dependencies]
python = ">=3.11, <4.0"
adalflow = { path = "adalflow", develop = true }
openai = "^1.34.0"
black = { extras = ["jupyter"], version = "^24.10.0" }
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.7.0"
anthropic = "^0.26.0"
torchmetrics = "^1.4.0.post0"
jupyter = "^1.0.0"
ipykernel = "^6.29.4"
dataclasses-jsonschema = "^2.16.0"
groq = "^0.9.0"
pgvector = "^0.2.5"
cohere = "^5.5.8"
pydot = "^2.0.0"
matplotlib = "^3.9.0"
ollama = "^0.2.1"
torch = ">=2.0, <3.0"
textgrad = "^0.1.4"
tensorboardx = "^2.6.2.2"
tensorboard = "^2.17.0"
dspy-ai = "^2.4.13"
transformers = "^4.44.0"
accelerate = "^0.33.0"
faiss-cpu = "^1.8.0.post1"
nltk = "^3.9.1"
ragas = "^0.1.16"
colorama = "^0.4.6"
black = "^24.10.0"
ruff = "^0.8.0"
google-generativeai = "^0.8.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
# for formatting and linting
[tool.black]
line-length = 88
target-version = ["py311"]
[tool.ruff]
lint.extend-ignore = [
"E402", # Ignore module-level import issues
"E731",
"UP007", # Wants | over Union, which breaks 3.8
]
line-length = 88