llm-app / pyproject.toml
terry-li-hm
Add `litellm`
1f6862d
raw
history blame contribute delete
752 Bytes
[tool.poetry]
name = "my-chatbot"
version = "0.1.0"
description = ""
authors = ["Your Name <you@example.com>"]
[tool.poetry.dependencies]
python = ">=3.11,<3.12"
torch = "2.0.1"
chainlit = "^0.7.400"
llama-index = "^0.8.55"
trafilatura = "^1.6.2"
openai = "^0.28.1"
transformers = "^4.34.1"
accelerate = "^0.24.0"
scipy = "^1.11.3"
bitsandbytes = "^0.41.1"
litellm = "^0.12.5"
[tool.pyright]
# https://github.com/microsoft/pyright/blob/main/docs/configuration.md
useLibraryCodeForTypes = true
exclude = [".cache"]
[tool.ruff]
# https://beta.ruff.rs/docs/configuration/
select = ['E', 'W', 'F', 'I', 'B', 'C4', 'ARG', 'SIM']
ignore = ['W291', 'W292', 'W293']
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"