| [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] |
| |
| useLibraryCodeForTypes = true |
| exclude = [".cache"] |
|
|
| [tool.ruff] |
| |
| 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" |