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-09-10 02:39:08 +00:00
|
|
|
description = "智能知识库问答系统"
|
2023-09-15 09:40:35 +00:00
|
|
|
authors = ["shaohuzhang1 <shaohu.zhang@fit2cloud.com>"]
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2024-08-15 09:17:25 +00:00
|
|
|
python = ">=3.11,<3.12"
|
2024-08-08 03:02:44 +00:00
|
|
|
django = "4.2.15"
|
2024-07-01 01:45:59 +00:00
|
|
|
djangorestframework = "^3.15.2"
|
2023-09-15 09:40:35 +00:00
|
|
|
drf-yasg = "1.21.7"
|
|
|
|
|
django-filter = "23.2"
|
2024-09-18 01:57:13 +00:00
|
|
|
langchain = "0.2.16"
|
2024-11-01 09:33:28 +00:00
|
|
|
langchain_community = "0.2.17"
|
2024-06-07 03:08:32 +00:00
|
|
|
langchain-huggingface = "^0.0.3"
|
2023-09-20 03:15:45 +00:00
|
|
|
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"
|
2023-10-24 12:24:32 +00:00
|
|
|
filetype = "^1.2.0"
|
2024-07-19 10:23:56 +00:00
|
|
|
torch = "2.2.1"
|
2023-10-24 12:24:32 +00:00
|
|
|
sentence-transformers = "^2.2.2"
|
2024-03-06 05:49:29 +00:00
|
|
|
openai = "^1.13.3"
|
2024-06-07 03:08:32 +00:00
|
|
|
tiktoken = "^0.7.0"
|
2024-03-25 07:08:40 +00:00
|
|
|
qianfan = "^0.3.6.1"
|
2023-11-16 05:16:27 +00:00
|
|
|
pycryptodome = "^3.19.0"
|
2023-12-27 10:33:23 +00:00
|
|
|
beautifulsoup4 = "^4.12.2"
|
2024-02-29 07:14:53 +00:00
|
|
|
html2text = "^2024.2.26"
|
2024-06-07 03:08:32 +00:00
|
|
|
langchain-openai = "^0.1.8"
|
2024-03-13 08:07:13 +00:00
|
|
|
django-ipware = "^6.0.4"
|
2024-03-14 04:26:42 +00:00
|
|
|
django-apscheduler = "^0.6.2"
|
2024-08-20 08:17:42 +00:00
|
|
|
pymupdf = "1.24.9"
|
2024-08-15 07:45:16 +00:00
|
|
|
pypdf = "4.3.1"
|
|
|
|
|
rapidocr-onnxruntime = "1.3.24"
|
2024-03-29 10:28:05 +00:00
|
|
|
python-docx = "^1.1.0"
|
2024-04-02 08:19:36 +00:00
|
|
|
xlwt = "^1.3.0"
|
2024-04-18 03:56:46 +00:00
|
|
|
dashscope = "^1.17.0"
|
2024-04-19 06:43:06 +00:00
|
|
|
zhipuai = "^2.0.1"
|
|
|
|
|
httpx = "^0.27.0"
|
|
|
|
|
httpx-sse = "^0.4.0"
|
2024-08-27 09:46:52 +00:00
|
|
|
websockets = "^13.0"
|
2024-05-14 02:06:21 +00:00
|
|
|
langchain-google-genai = "^1.0.3"
|
2024-05-23 10:57:49 +00:00
|
|
|
openpyxl = "^3.1.2"
|
|
|
|
|
xlrd = "^2.0.1"
|
2024-07-19 10:29:48 +00:00
|
|
|
gunicorn = "^22.0.0"
|
2024-07-19 10:23:56 +00:00
|
|
|
python-daemon = "3.0.1"
|
2024-09-29 03:13:06 +00:00
|
|
|
boto3 = "^1.34.160"
|
|
|
|
|
tencentcloud-sdk-python = "^3.0.1209"
|
|
|
|
|
xinference-client = "^0.14.1.post1"
|
2024-08-21 06:46:11 +00:00
|
|
|
psutil = "^6.0.0"
|
|
|
|
|
celery = { extras = ["sqlalchemy"], version = "^5.4.0" }
|
|
|
|
|
django-celery-beat = "^2.6.0"
|
|
|
|
|
celery-once = "^3.0.1"
|
2024-09-29 10:58:00 +00:00
|
|
|
anthropic = "^0.34.2"
|
2024-10-08 08:58:46 +00:00
|
|
|
pylint = "3.1.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"
|