-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
executable file
·64 lines (59 loc) · 1.44 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
[tool.poetry]
name = "multi-agentic-hybrid-rag-experiment"
version = "0.1.0"
description = "Multi-Agentic Hybrid RAG Experiment"
authors = ["yarikama <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10,<=3.13"
transformers = "^4.42.4"
torch = "^2.3.1"
torchvision = "^0.18.1"
pymilvus = {extras = ["sparse"], version = "^2.4.4"}
openai = "^1.35.14"
requests = "^2.32.3"
tqdm = "^4.66.4"
langchain = "^0.2.9"
langchain-community = "^0.2.7"
langchain-milvus = "^0.1.2"
langchain-openai = "^0.1.17"
sentence-transformers = "^3.0.1"
langchain-huggingface = "^0.0.3"
pdfplumber = "^0.11.2"
llama-index = "^0.10.56"
langchain-experimental = "^0.0.62"
datasets = "^2.20.0"
crewai = {extras = ["tools"], version = "^0.51.1"}
pydantic = "^2.8.2"
jq = "^1.7.0"
ragas = "^0.1.12"
pandas = "^2.2.2"
langgraph = "^0.2.3"
mypy = "^1.11.1"
streamlit-pydantic = "^0.6.0"
pyarrow = "^17.0.0"
neo4j = "^5.23.1"
lshashpy3 = "^0.0.9"
pytest = "^8.3.2"
umap-learn = "^0.5.6"
numba = "^0.60.0"
scikit-learn = "^1.5.1"
matplotlib = "^3.9.2"
ipython = "^8.27.0"
ipykernel = "^6.29.5"
jupyter = "^1.1.1"
notebook = "^7.2.2"
beautifulsoup4 = "^4.12.3"
anthropic = "^0.34.2"
google-generativeai = "^0.8.1"
cohere = "^5.9.2"
pre-commit = "^4.0.1"
smolagents = "^1.2.2"
hdbscan = "^0.8.40"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest]
testpaths = ["tests"]