From a61fcad451ed0fc604e495aa9051da02d678739c Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Mon, 21 Aug 2023 13:16:57 -0700 Subject: [PATCH] add azure to the llm provider list --- litellm/__init__.py | 1 + pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/litellm/__init__.py b/litellm/__init__.py index 6a71ff0af..2271d60f4 100644 --- a/litellm/__init__.py +++ b/litellm/__init__.py @@ -223,6 +223,7 @@ model_list = ( provider_list = [ "openai", + "azure", "cohere", "anthropic", "replicate", diff --git a/pyproject.toml b/pyproject.toml index a3d731a07..dc196ef13 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "litellm" -version = "0.1.443" +version = "0.1.444" description = "Library to easily interface with LLM API providers" authors = ["BerriAI"] license = "MIT License"