From cef67a9beb9635941264149d17704f622d448594 Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Sat, 4 Nov 2023 22:24:23 -0700 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.13.1.dev1=20=E2=86=92=200.1?= =?UTF-8?q?3.1.dev2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- litellm/proxy/proxy_cli.py | 1 + pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/litellm/proxy/proxy_cli.py b/litellm/proxy/proxy_cli.py index 16720f436..fbc2d6cd1 100644 --- a/litellm/proxy/proxy_cli.py +++ b/litellm/proxy/proxy_cli.py @@ -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) diff --git a/pyproject.toml b/pyproject.toml index 70a0d0b9f..714b13a86 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" ]