From b1bed459b4efc75f07a7d06b5260deb1a8ce187b Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Fri, 16 Aug 2024 21:34:35 -0700 Subject: [PATCH] =?UTF-8?q?bump:=20version=201.43.16=20=E2=86=92=201.43.17?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- litellm/tests/test_completion_cost.py | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/litellm/tests/test_completion_cost.py b/litellm/tests/test_completion_cost.py index 9c5075c08..d2de497ea 100644 --- a/litellm/tests/test_completion_cost.py +++ b/litellm/tests/test_completion_cost.py @@ -251,7 +251,7 @@ def test_cost_azure_gpt_35(): ) cost = litellm.completion_cost( - completion_response=resp, model="azure/chatgpt-v-2" + completion_response=resp, model="azure/gpt-35-turbo" ) print("\n Calculated Cost for azure/gpt-3.5-turbo", cost) input_cost = model_cost["azure/gpt-35-turbo"]["input_cost_per_token"] diff --git a/pyproject.toml b/pyproject.toml index 4a0910e1c..33bd151e0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "litellm" -version = "1.43.16" +version = "1.43.17" description = "Library to easily interface with LLM API providers" authors = ["BerriAI"] license = "MIT" @@ -91,7 +91,7 @@ requires = ["poetry-core", "wheel"] build-backend = "poetry.core.masonry.api" [tool.commitizen] -version = "1.43.16" +version = "1.43.17" version_files = [ "pyproject.toml:^version" ]