Skip to content

Commit e6600a4

Browse files
committed
chore: update dependencies in pyproject.toml
1 parent 64f61a3 commit e6600a4

File tree

1 file changed

+30
-11
lines changed

1 file changed

+30
-11
lines changed

pyproject.toml

Lines changed: 30 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,27 @@ package-mode = false
88

99
[tool.poetry.dependencies]
1010
python = "^3.11"
11+
12+
# Web框架
1113
django = "5.2.4"
1214
drf-spectacular = { extras = ["sidecar"], version = "0.28.0" }
1315
django-redis = "6.0.0"
1416
django-db-connection-pool = "1.2.6"
1517
django-mptt = "0.17.0"
1618
psycopg = { extras = ["binary"], version = "3.2.9" }
19+
20+
# 工具库
1721
python-dotenv = "1.1.1"
1822
uuid-utils = "0.11.0"
1923
diskcache2 = "1.0.0"
2024
captcha = "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相关
2132
langchain-openai = "0.3.27"
2233
langchain-anthropic = "0.3.17"
2334
langchain-community = "0.3.27"
@@ -28,6 +39,9 @@ langchain-huggingface = "0.3.0"
2839
langchain-ollama = "0.3.3"
2940
langgraph = "0.5.1"
3041
torch = "2.7.1"
42+
sentence-transformers = "5.0.0"
43+
44+
# 云服务SDK
3145
qianfan = "0.4.12.3"
3246
zhipuai = "2.1.5.20250701"
3347
volcengine-python-sdk = {version = "4.0.4", extras = ["ark"]}
@@ -36,29 +50,34 @@ tencentcloud-sdk-python = "3.0.1415"
3650
xinference-client = "1.7.1.post1"
3751
anthropic = "0.57.1"
3852
dashscope = "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+
# 异步任务
4655
celery = { extras = ["sqlalchemy"], version = "5.5.3" }
4756
django-celery-beat = "2.8.1"
4857
celery-once = "3.0.1"
49-
beautifulsoup4 = "4.13.4"
58+
django-apscheduler = "0.7.0"
59+
60+
# 文档处理
5061
html2text = "2025.4.15"
51-
jieba = "0.42.1"
5262
openpyxl = "3.1.5"
5363
python-docx = "1.2.0"
5464
xlrd = "2.0.2"
5565
xlwt = "1.3.0"
5666
pymupdf = "1.26.3"
5767
pypdf = "5.7.0"
68+
69+
# 音频处理
70+
pydub = "0.25.1"
71+
pysilk = "0.0.1"
72+
73+
# 部署工具
5874
gunicorn = "23.0.0"
5975
python-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]
6483
requires = ["poetry-core"]

0 commit comments

Comments
 (0)