-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (42 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
44 lines (42 loc) · 1.03 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
[project]
name = "qrydocs"
version = "0.1.0"
description = "Converts documents and website content into intelligent RAG assistentes"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"accelerate>=1.10.1",
"bitsandbytes>=0.48.1",
"boto3>=1.40.40",
"celery>=5.5.3",
"fastapi[standard]>=0.117.1",
"hdbscan>=0.8.40",
"httpx>=0.28.1",
"huggingface-hub>=0.35.1",
"langchain-community>=0.3.30",
"langchain-huggingface>=0.3.1",
"langchain-qdrant>=0.2.1",
"markdown>=3.9",
"marker-pdf[full]>=1.10.0",
"modal>=1.2.0",
"pandas>=2.3.2",
"pdfplumber>=0.11.7",
"pydantic-settings>=2.11.0",
"pypdf>=6.1.0",
"python-dotenv>=1.1.1",
"python-jose>=3.5.0",
"python-multipart>=0.0.20",
"qdrant-client>=1.15.1",
"scikit-learn>=1.7.2",
"sentence-transformers>=5.1.1",
"torch>=2.8.0",
"transformers>=4.56.2",
"unstructured>=0.18.15",
]
[dependency-groups]
dev = [
"flower>=2.0.1",
"pytest>=8.4.2",
]
[tool.uv.sources]
qrydocs = { path = "app" }