2023-08-02 12:05:35 +03:00
|
|
|
[tool.poetry]
|
|
|
|
|
name = "litellm"
|
2024-03-23 22:35:18 -07:00
|
|
|
version = "1.34.0"
|
2023-08-02 12:05:35 +03:00
|
|
|
description = "Library to easily interface with LLM API providers"
|
|
|
|
|
authors = ["BerriAI"]
|
2024-01-19 10:47:29 +01:00
|
|
|
license = "MIT"
|
2023-08-02 12:05:35 +03:00
|
|
|
readme = "README.md"
|
|
|
|
|
|
2024-01-20 16:09:40 +01:00
|
|
|
[tool.poetry.urls]
|
|
|
|
|
homepage = "https://litellm.ai"
|
|
|
|
|
repository = "https://github.com/BerriAI/litellm"
|
|
|
|
|
documentation = "https://docs.litellm.ai"
|
|
|
|
|
|
2023-08-02 12:05:35 +03:00
|
|
|
[tool.poetry.dependencies]
|
2024-02-12 19:49:11 +02:00
|
|
|
python = ">=3.8.1,<4.0, !=3.9.7"
|
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-11-09 10:40:26 -08:00
|
|
|
aiohttp = "*"
|
2024-01-11 16:20:50 +01:00
|
|
|
requests = "^2.31.0"
|
2023-09-26 13:30:35 -07:00
|
|
|
|
2023-12-28 12:59:27 +05:30
|
|
|
uvicorn = {version = "^0.22.0", optional = true}
|
2024-01-10 17:47:24 +05:30
|
|
|
gunicorn = {version = "^21.2.0", optional = true}
|
2024-03-21 14:22:29 +02:00
|
|
|
fastapi = {version = "^0.109.1", optional = true}
|
2023-11-30 16:23:34 -07:00
|
|
|
backoff = {version = "*", optional = true}
|
2024-01-18 18:52:43 +11:00
|
|
|
pyyaml = {version = "^6.0.1", optional = true}
|
2023-11-30 16:23:34 -07:00
|
|
|
rq = {version = "*", optional = true}
|
2023-12-28 12:59:27 +05:30
|
|
|
orjson = {version = "^3.9.7", optional = true}
|
2024-01-23 14:39:35 -08:00
|
|
|
apscheduler = {version = "^3.10.4", optional = true}
|
2024-02-02 07:39:11 -08:00
|
|
|
fastapi-sso = { version = "^0.10.0", optional = true }
|
|
|
|
|
PyJWT = { version = "^2.8.0", optional = true }
|
2024-03-24 08:44:36 +00:00
|
|
|
python-multipart = "^0.0.9"
|
|
|
|
|
cryptography = "^42.0.5"
|
2023-11-30 16:23:34 -07:00
|
|
|
|
|
|
|
|
[tool.poetry.extras]
|
|
|
|
|
proxy = [
|
2024-01-10 17:47:24 +05:30
|
|
|
"gunicorn",
|
2023-11-30 16:23:34 -07:00
|
|
|
"uvicorn",
|
|
|
|
|
"fastapi",
|
|
|
|
|
"backoff",
|
2023-12-27 17:22:36 +05:30
|
|
|
"pyyaml",
|
2023-11-30 19:50:47 -08:00
|
|
|
"rq",
|
|
|
|
|
"orjson",
|
2024-02-02 07:39:11 -08:00
|
|
|
"apscheduler",
|
|
|
|
|
"fastapi-sso",
|
|
|
|
|
"PyJWT",
|
2024-03-07 21:48:18 -08:00
|
|
|
"python-multipart",
|
2024-03-23 10:31:31 -07:00
|
|
|
"cryptography"
|
2024-01-01 09:23:34 +05:30
|
|
|
]
|
|
|
|
|
|
2023-12-01 19:36:06 -08:00
|
|
|
extra_proxy = [
|
|
|
|
|
"prisma",
|
|
|
|
|
"azure-identity",
|
2023-12-26 15:39:24 +05:30
|
|
|
"azure-keyvault-secrets",
|
2024-01-01 13:42:36 +05:30
|
|
|
"google-cloud-kms",
|
|
|
|
|
"resend"
|
2023-12-01 19:36:06 -08:00
|
|
|
]
|
|
|
|
|
|
2023-12-02 11:32:15 -08:00
|
|
|
|
2023-09-26 13:30:35 -07:00
|
|
|
[tool.poetry.scripts]
|
|
|
|
|
litellm = 'litellm:run_server'
|
2023-08-02 12:05:35 +03:00
|
|
|
|
2023-12-22 08:14:54 +01:00
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
|
|
|
flake8 = "^6.1.0"
|
2023-12-22 08:38:19 +01:00
|
|
|
black = "^23.12.0"
|
2023-12-22 09:25:57 +01:00
|
|
|
pytest = "^7.4.3"
|
2024-02-22 23:23:06 +00:00
|
|
|
pytest-mock = "^3.12.0"
|
2023-12-22 08:14:54 +01:00
|
|
|
|
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]
|
2024-03-23 22:35:18 -07:00
|
|
|
version = "1.34.0"
|
2023-10-06 06:45:14 -07:00
|
|
|
version_files = [
|
|
|
|
|
"pyproject.toml:^version"
|
|
|
|
|
]
|
2023-10-05 22:15:23 -07:00
|
|
|
|