2023-08-02 12:05:35 +03:00
|
|
|
[tool.poetry]
|
|
|
|
|
name = "litellm"
|
2023-11-30 14:08:59 -08:00
|
|
|
version = "1.9.2"
|
2023-08-02 12:05:35 +03:00
|
|
|
description = "Library to easily interface with LLM API providers"
|
|
|
|
|
authors = ["BerriAI"]
|
|
|
|
|
license = "MIT License"
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2023-08-05 09:43:21 -07:00
|
|
|
python = "^3.8"
|
2023-11-14 20:57:51 -08:00
|
|
|
openai = ">=1.0.0"
|
2023-09-02 15:25:34 -07:00
|
|
|
python-dotenv = ">=0.2.0"
|
2023-09-25 07:33:23 -07:00
|
|
|
tiktoken = ">=0.4.0"
|
|
|
|
|
importlib-metadata = ">=6.8.0"
|
2023-09-25 09:15:50 -07:00
|
|
|
tokenizers = "*"
|
2023-09-26 13:30:35 -07:00
|
|
|
click = "*"
|
2023-10-03 21:05:20 -07:00
|
|
|
jinja2 = "^3.1.2"
|
2023-10-10 13:22:27 -07:00
|
|
|
certifi = "^2023.7.22"
|
2023-10-12 09:41:31 -07:00
|
|
|
appdirs = "^1.4.4"
|
2023-11-09 10:40:26 -08:00
|
|
|
aiohttp = "*"
|
2023-09-26 13:30:35 -07:00
|
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
|
|
|
|
litellm = 'litellm:run_server'
|
2023-08-02 12:05:35 +03:00
|
|
|
|
|
|
|
|
[build-system]
|
2023-11-30 14:20:17 -08:00
|
|
|
requires = ["poetry-core", "wheel"]
|
2023-08-02 12:05:35 +03:00
|
|
|
build-backend = "poetry.core.masonry.api"
|
2023-10-05 22:15:23 -07:00
|
|
|
|
|
|
|
|
[tool.commitizen]
|
2023-11-30 14:08:59 -08:00
|
|
|
version = "1.9.2"
|
2023-10-06 06:45:14 -07:00
|
|
|
version_files = [
|
|
|
|
|
"pyproject.toml:^version"
|
|
|
|
|
]
|
2023-10-05 22:15:23 -07:00
|
|
|
|