-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (28 loc) · 821 Bytes
/
pyproject.toml
File metadata and controls
29 lines (28 loc) · 821 Bytes
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
[project]
name = "rag-api"
version = "0.1.0"
description = "RAG API with multimodal document processing"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"lightrag-hku==1.4.9.7",
"raganything>=1.2.8", # 只安装核心依赖,避免 [all] 导致的依赖解析超时
"docling>=1.0.0", # for Docling parser CLI
"aiohttp>=3.9.0",
"requests>=2.31.0",
"loguru>=0.7.0",
"psutil>=5.9.0",
# External storage dependencies
"redis>=5.0.0", # for RedisKVStorage
"asyncpg>=0.29.0", # for PGVectorStorage
"neo4j>=5.14.0", # for Neo4JStorage
"qdrant-client>=1.7.0", # for QdrantVectorDBStorage
"gqlalchemy>=1.4.0",
"pillow>=11.3.0",
"pymupdf>=1.26.5",
"tiktoken>=0.8.0", # for accurate token counting
]
[dependency-groups]
dev = [
"ruff>=0.14.0",
]