mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
41 lines
1.1 KiB
TOML
41 lines
1.1 KiB
TOML
[tool.poetry]
|
|
name = "maxkb"
|
|
version = "0.1.0"
|
|
description = "智能客服系统"
|
|
authors = ["shaohuzhang1 <shaohu.zhang@fit2cloud.com>"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.11"
|
|
django = "4.1.13"
|
|
djangorestframework = "3.14.0"
|
|
drf-yasg = "1.21.7"
|
|
django-filter = "23.2"
|
|
elasticsearch = "8.9.0"
|
|
langchain = "^0.1.11"
|
|
psycopg2-binary = "2.9.7"
|
|
jieba = "^0.42.1"
|
|
diskcache = "^5.6.3"
|
|
pillow = "^10.2.0"
|
|
filetype = "^1.2.0"
|
|
chardet = "^5.2.0"
|
|
torch = [
|
|
{ url = "https://download.pytorch.org/whl/cpu/torch-2.2.1%2Bcpu-cp311-cp311-linux_x86_64.whl", markers = "sys_platform == 'linux'"},
|
|
{ url = "https://download.pytorch.org/whl/cpu/torch-2.2.1-cp311-none-macosx_11_0_arm64.whl", markers = "sys_platform == 'darwin' and platform_machine == 'arm64'"}
|
|
]
|
|
sentence-transformers = "^2.2.2"
|
|
blinker = "^1.6.3"
|
|
openai = "^1.13.3"
|
|
tiktoken = "^0.5.1"
|
|
qianfan = "^0.1.1"
|
|
pycryptodome = "^3.19.0"
|
|
beautifulsoup4 = "^4.12.2"
|
|
html2text = "^2024.2.26"
|
|
langchain-openai = "^0.0.8"
|
|
django-ipware = "^6.0.4"
|
|
django-apscheduler = "^0.6.2"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|