UnisKB/pyproject.toml

48 lines
1.0 KiB
TOML
Raw Normal View History

2023-09-15 09:40:35 +00:00
[tool.poetry]
2023-12-11 06:42:28 +00:00
name = "maxkb"
2023-09-15 09:40:35 +00:00
version = "0.1.0"
2024-03-20 06:12:29 +00:00
description = "智能知识库"
2023-09-15 09:40:35 +00:00
authors = ["shaohuzhang1 <shaohu.zhang@fit2cloud.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
2024-03-19 11:54:15 +00:00
django = "4.1.13"
2023-09-15 09:40:35 +00:00
djangorestframework = "3.14.0"
drf-yasg = "1.21.7"
django-filter = "23.2"
2024-03-06 05:43:45 +00:00
langchain = "^0.1.11"
psycopg2-binary = "2.9.7"
2023-09-15 09:40:35 +00:00
jieba = "^0.42.1"
diskcache = "^5.6.3"
2024-03-19 11:54:15 +00:00
pillow = "^10.2.0"
filetype = "^1.2.0"
2024-03-26 09:24:20 +00:00
torch = "^2.2.1"
sentence-transformers = "^2.2.2"
blinker = "^1.6.3"
2024-03-06 05:49:29 +00:00
openai = "^1.13.3"
tiktoken = "^0.5.1"
qianfan = "^0.3.6.1"
pycryptodome = "^3.19.0"
2023-12-27 10:33:23 +00:00
beautifulsoup4 = "^4.12.2"
html2text = "^2024.2.26"
2024-03-06 05:43:45 +00:00
langchain-openai = "^0.0.8"
django-ipware = "^6.0.4"
django-apscheduler = "^0.6.2"
2024-04-18 09:06:37 +00:00
pymupdf = "1.24.1"
python-docx = "^1.1.0"
xlwt = "^1.3.0"
dashscope = "^1.17.0"
zhipuai = "^2.0.1"
httpx = "^0.27.0"
httpx-sse = "^0.4.0"
websocket-client = "^1.7.0"
2023-09-15 09:40:35 +00:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
2024-03-20 05:07:59 +00:00
[[tool.poetry.source]]
name = "pytorch"
url = "https://download.pytorch.org/whl/cpu"
priority = "explicit"