diff --git a/litellm/utils.py b/litellm/utils.py index 219a32949..88bcd078f 100644 --- a/litellm/utils.py +++ b/litellm/utils.py @@ -4221,11 +4221,7 @@ def get_model_info(model: str): return None try: - azure_llms = { - "gpt-35-turbo": "azure/gpt-3.5-turbo", - "gpt-35-turbo-16k": "azure/gpt-3.5-turbo-16k", - "gpt-35-turbo-instruct": "azure/gpt-3.5-turbo-instruct", - } + azure_llms = litellm.azure_llms if model in azure_llms: model = azure_llms[model] if model in litellm.model_cost: diff --git a/pyproject.toml b/pyproject.toml index 7a1dccbf5..5dab0d11f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "litellm" -version = "1.16.10" +version = "1.16.11" description = "Library to easily interface with LLM API providers" authors = ["BerriAI"] license = "MIT License" @@ -59,7 +59,7 @@ requires = ["poetry-core", "wheel"] build-backend = "poetry.core.masonry.api" [tool.commitizen] -version = "1.16.10" +version = "1.16.11" version_files = [ "pyproject.toml:^version" ]