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