bump: version 1.0.0.dev1 → 1.0.0

This commit is contained in:
Krrish Dholakia 2023-11-13 16:48:53 -08:00
parent 42d0925209
commit 4475f2bbdd
2 changed files with 6 additions and 2 deletions

View file

@ -30,11 +30,15 @@ class Router:
redis_port: Optional[int] = None,
redis_password: Optional[str] = None,
cache_responses: bool = False,
num_retries: Optional[int] = None,
routing_strategy: Literal["simple-shuffle", "least-busy"] = "simple-shuffle") -> None:
if model_list:
self.set_model_list(model_list)
self.healthy_deployments: List = self.model_list
if num_retries:
litellm.num_retries = num_retries
self.routing_strategy = routing_strategy
### HEALTH CHECK THREAD ###
if self.routing_strategy == "least-busy":

View file

@ -1,6 +1,6 @@
[tool.poetry]
name = "litellm"
version = "1.0.0.dev1"
version = "1.0.0"
description = "Library to easily interface with LLM API providers"
authors = ["BerriAI"]
license = "MIT License"
@ -27,7 +27,7 @@ requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.commitizen]
version = "1.0.0.dev1"
version = "1.0.0"
version_files = [
"pyproject.toml:^version"
]