mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-24 18:24:20 +00:00
33 lines
653 B
TOML
33 lines
653 B
TOML
[tool.poetry]
|
|
name = "litellm"
|
|
version = "0.12.5"
|
|
description = "Library to easily interface with LLM API providers"
|
|
authors = ["BerriAI"]
|
|
license = "MIT License"
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.8"
|
|
openai = "^0.28.0 || ^0.27.0"
|
|
python-dotenv = ">=0.2.0"
|
|
tiktoken = ">=0.4.0"
|
|
importlib-metadata = ">=6.8.0"
|
|
tokenizers = "*"
|
|
click = "*"
|
|
jinja2 = "^3.1.2"
|
|
certifi = "^2023.7.22"
|
|
appdirs = "^1.4.4"
|
|
|
|
[tool.poetry.scripts]
|
|
litellm = 'litellm:run_server'
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.commitizen]
|
|
version = "0.12.5"
|
|
version_files = [
|
|
"pyproject.toml:^version"
|
|
]
|
|
|