-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (44 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
47 lines (44 loc) · 1.13 KB
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
[tool.uv]
index-url = "https://pypi.org/simple"
[tool.uv.sources]
wikiextractor = { git = "https://github.com/attardi/wikiextractor.git", rev = "ab8988ebfa9e4557411f3d4c0f4ccda139e18875" }
[project]
name = "ragx"
version = "0.1.0"
description = "RAG (Retrieval-Augmented Generation) system"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"wikiextractor>=3.0.6",
"qdrant-client>=1.7.0",
"sentence-transformers>=2.7.0",
"transformers>=4.35.0",
"torch",
"fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0",
"pydantic>=2.5.0",
"pydantic-settings>=2.2.1",
"nltk>=3.8",
"tqdm>=4.65.0",
"jinja2>=3.1.4",
"numpy>=1.24.0",
"requests>=2.32.0",
"llama-index>=0.13.3",
"torchvision",
"torchaudio",
"datasets>=4.0.0",
"tokenizers>=0.21.4",
"accelerate>=1.10.0",
"llama-index-embeddings-huggingface>=0.6.0",
"pylint>=3.3.8",
"streamlit>=1.38.0",
"plotly>=5.18.0",
"colorlog>=6.10.1",
"spacy>=3.8.11",
"scipy-stubs~=1.16.1",
"langchain>=1.2.7",
"ragas>=0.4.3",
"pandas-stubs~=2.2.3",
"langdetect>=1.0.9",
"ollama>=0.6.1",
]