-
Notifications
You must be signed in to change notification settings - Fork 243
/
Copy pathpyproject.toml
69 lines (61 loc) · 1.63 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
[tool.poetry]
name = "lightrag-project"
version = "0.1.0"
description = "A project to develop and test the lightrag library"
authors = ["Your Name <[email protected]>"]
license = "MIT"
packages = [{ from = "_lightrag", include = "lightrag" }] # empty packages list
[tool.poetry.dependencies]
python = ">=3.11, <4.0"
lightrag = { path = "lightrag", develop = true }
torch = "^2.3.1"
flagembedding = "^1.2.10"
# cohere = "^5.5.7"
openai = "^1.34.0"
networkx = "^3.3"
pyvis = "^0.3.2"
[tool.poetry.group.dev.dependencies]
# langchain = "^0.1.16"
# llama-index = "^0.10.30"
pre-commit = "^3.7.0"
# litellm = "^1.35.34"
# haystack-ai = "^2.0.1"
# torchvision = "^0.18.0"
# langsmith = "^0.1.56"
# langchain-openai = "^0.1.6"
# pyvis = "^0.3.2"
# llama-index-llms-ollama = "^0.1.3"
anthropic = "^0.26.0"
google-generativeai = "^0.5.4"
torchmetrics = "^1.4.0.post0"
# lightning = "^2.2.4"
# dspy-ai = "^2.4.9"
jupyter = "^1.0.0"
ipykernel = "^6.29.4"
# colorama = "^0.4.6"
dataclasses-jsonschema = "^2.16.0"
groq = "^0.5.0"
# llama-index-retrievers-bm25 = "^0.1.3"
rank-bm25 = "^0.2.2"
llama-index = "^0.10.44"
llama-index-vector-stores-postgres = "^0.1.11"
pgvector = "^0.2.5"
cohere = "^5.5.8"
langchain = "^0.2.5"
langchain-community = "^0.2.5"
langchain-openai = "^0.1.8"
pydot = "^2.0.0"
matplotlib = "^3.9.0"
pyvis = "^0.3.2"
[tool.poetry.group.doc.dependencies]
pydata-sphinx-theme = "^0.15.3"
sphinx-design = "^0.6.0"
sphinx-copybutton = "^0.5.2"
sphinx = "^7.3.7"
nbsphinx = "^0.9.4"
nbconvert = "^7.16.4"
pandoc = "^2.3"
readthedocs-sphinx-search = "^0.3.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"