mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-24 18:24:20 +00:00
bump: version 0.13.1.dev2 → 0.13.1.dev3
This commit is contained in:
parent
cef67a9beb
commit
3a4370ae20
5 changed files with 4 additions and 4 deletions
BIN
dist/litellm-0.13.1.dev1-py3-none-any.whl
vendored
Normal file
BIN
dist/litellm-0.13.1.dev1-py3-none-any.whl
vendored
Normal file
Binary file not shown.
BIN
dist/litellm-0.13.1.dev1.tar.gz
vendored
Normal file
BIN
dist/litellm-0.13.1.dev1.tar.gz
vendored
Normal file
Binary file not shown.
|
@ -383,4 +383,4 @@ from .exceptions import (
|
||||||
from .budget_manager import BudgetManager
|
from .budget_manager import BudgetManager
|
||||||
from .proxy.proxy_cli import run_server
|
from .proxy.proxy_cli import run_server
|
||||||
from .router import Router
|
from .router import Router
|
||||||
|
from .proxy.proxy_server import app
|
||||||
|
|
|
@ -177,7 +177,7 @@ def run_server(host, port, api_base, api_version, model, alias, add_key, headers
|
||||||
if port == 8000 and is_port_in_use(port):
|
if port == 8000 and is_port_in_use(port):
|
||||||
port = random.randint(1024, 49152)
|
port = random.randint(1024, 49152)
|
||||||
print(os.listdir(os.getcwd()))
|
print(os.listdir(os.getcwd()))
|
||||||
uvicorn.run("proxy_server:app", host=host, port=port, workers=num_workers)
|
uvicorn.run("litellm:app", host=host, port=port, workers=num_workers)
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "litellm"
|
name = "litellm"
|
||||||
version = "0.13.1.dev2"
|
version = "0.13.1.dev3"
|
||||||
description = "Library to easily interface with LLM API providers"
|
description = "Library to easily interface with LLM API providers"
|
||||||
authors = ["BerriAI"]
|
authors = ["BerriAI"]
|
||||||
license = "MIT License"
|
license = "MIT License"
|
||||||
|
@ -26,7 +26,7 @@ requires = ["poetry-core"]
|
||||||
build-backend = "poetry.core.masonry.api"
|
build-backend = "poetry.core.masonry.api"
|
||||||
|
|
||||||
[tool.commitizen]
|
[tool.commitizen]
|
||||||
version = "0.13.1.dev2"
|
version = "0.13.1.dev3"
|
||||||
version_files = [
|
version_files = [
|
||||||
"pyproject.toml:^version"
|
"pyproject.toml:^version"
|
||||||
]
|
]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue