bump: version 0.13.1.dev1 → 0.13.1.dev2

This commit is contained in:
Krrish Dholakia 2023-11-04 22:24:23 -07:00
parent f712e730a9
commit cef67a9beb
2 changed files with 3 additions and 2 deletions

View file

@ -176,6 +176,7 @@ def run_server(host, port, api_base, api_version, model, alias, add_key, headers
if port == 8000 and is_port_in_use(port):
port = random.randint(1024, 49152)
print(os.listdir(os.getcwd()))
uvicorn.run("proxy_server:app", host=host, port=port, workers=num_workers)

View file

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