@@ -8,16 +8,27 @@ package-mode = false
88
99[tool .poetry .dependencies ]
1010python = " ^3.11"
11+
12+ # Web框架
1113django = " 5.2.4"
1214drf-spectacular = { extras = [" sidecar" ], version = " 0.28.0" }
1315django-redis = " 6.0.0"
1416django-db-connection-pool = " 1.2.6"
1517django-mptt = " 0.17.0"
1618psycopg = { extras = [" binary" ], version = " 3.2.9" }
19+
20+ # 工具库
1721python-dotenv = " 1.1.1"
1822uuid-utils = " 0.11.0"
1923diskcache2 = " 1.0.0"
2024captcha = " 0.7.1"
25+ pytz = " 2025.2"
26+ psutil = " 7.0.0"
27+ cffi = " 1.17.1"
28+ beautifulsoup4 = " 4.13.4"
29+ jieba = " 0.42.1"
30+
31+ # LLM及AI相关
2132langchain-openai = " 0.3.27"
2233langchain-anthropic = " 0.3.17"
2334langchain-community = " 0.3.27"
@@ -28,6 +39,9 @@ langchain-huggingface = "0.3.0"
2839langchain-ollama = " 0.3.3"
2940langgraph = " 0.5.1"
3041torch = " 2.7.1"
42+ sentence-transformers = " 5.0.0"
43+
44+ # 云服务SDK
3145qianfan = " 0.4.12.3"
3246zhipuai = " 2.1.5.20250701"
3347volcengine-python-sdk = {version = " 4.0.4" , extras = [" ark" ]}
@@ -36,29 +50,34 @@ tencentcloud-sdk-python = "3.0.1415"
3650xinference-client = " 1.7.1.post1"
3751anthropic = " 0.57.1"
3852dashscope = " 1.23.6"
39- pylint = " 3.3.7"
40- pydub = " 0.25.1"
41- cffi = " 1.17.1"
42- pysilk = " 0.0.1"
43- sentence-transformers = " 5.0.0"
44- websockets = " 15.0.1"
45- psutil = " 7.0.0"
53+
54+ # 异步任务
4655celery = { extras = [" sqlalchemy" ], version = " 5.5.3" }
4756django-celery-beat = " 2.8.1"
4857celery-once = " 3.0.1"
49- beautifulsoup4 = " 4.13.4"
58+ django-apscheduler = " 0.7.0"
59+
60+ # 文档处理
5061html2text = " 2025.4.15"
51- jieba = " 0.42.1"
5262openpyxl = " 3.1.5"
5363python-docx = " 1.2.0"
5464xlrd = " 2.0.2"
5565xlwt = " 1.3.0"
5666pymupdf = " 1.26.3"
5767pypdf = " 5.7.0"
68+
69+ # 音频处理
70+ pydub = " 0.25.1"
71+ pysilk = " 0.0.1"
72+
73+ # 部署工具
5874gunicorn = " 23.0.0"
5975python-daemon = " 3.1.2"
60- pytz = " 2025.2"
61- django-apscheduler = " 0.7.0"
76+ websockets = " 15.0.1"
77+
78+ # 开发工具
79+ pylint = " 3.3.7"
80+
6281
6382[build-system ]
6483requires = [" poetry-core" ]
0 commit comments