依赖更新

This commit is contained in:
glide-the 2024-06-12 11:43:28 +08:00
parent abed17896d
commit e8556c795b
2 changed files with 5 additions and 4 deletions

View File

@ -16,10 +16,10 @@ chatchat-config = 'chatchat.config_work_space:main'
[tool.poetry.dependencies]
python = ">=3.8.1,<3.12,!=3.9.7"
model-providers = "^0.3.0"
langchain = "0.1.17"
langchain = { version = "0.1.17", python = ">=3.8.1,<3.12,!=3.9.7" }
langchainhub = "0.1.14"
langchain-community = "0.0.36"
langchain-openai = "0.0.5"
langchain-openai = { version = "0.0.5", python = ">=3.8.1,<3.12,!=3.9.7" }
langchain-experimental = "0.0.58"
fastapi = "~0.109.2"
sse_starlette = "~1.8.2"

View File

@ -17,7 +17,7 @@ pydantic ="~2.6.4"
omegaconf = "~2.0.6"
# modle_runtime
openai = "~1.13.3"
tiktoken = "~0.7.0"
tiktoken = ">=0.5.2"
pydub = "~0.25.1"
boto3 = "~1.28.17"
@ -39,7 +39,8 @@ pytest-mock = "^3.10.0"
pytest-socket = "^0.6.0"
syrupy = "^4.0.2"
requests-mock = "^1.11.0"
langchain = { version = "0.1.5", python = ">=3.8.1,<3.12,!=3.9.7" }
langchain = { version = "0.1.17", python = ">=3.8.1,<3.12,!=3.9.7" }
langchain-openai = { version = "0.0.5", python = ">=3.8.1,<3.12,!=3.9.7" }
[tool.poetry.group.lint]