-
Notifications
You must be signed in to change notification settings - Fork 169
/
pyproject.toml
58 lines (47 loc) · 1.27 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
[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 }
# torch = "^2.3.1"
openai = "^1.34.0"
# lightrag = {path = "lightrag/dist/lightrag-0.0.0a11-py3-none-any.whl"}
# lightrag = "^0.0.0a13"
[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"
pyvis = "^0.3.2"
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"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"