diff --git a/litellm/__init__.py b/litellm/__init__.py index 349f427b93..192f33844f 100644 --- a/litellm/__init__.py +++ b/litellm/__init__.py @@ -150,10 +150,13 @@ secret_manager_client = None open_ai_chat_completion_models = [ "gpt-4", "gpt-4-0613", + "gpt-4-0314", "gpt-4-32k", + "gpt-4-32k-0314", "gpt-4-32k-0613", ################# "gpt-3.5-turbo", + "gpt-3.5-turbo-0301", "gpt-3.5-turbo-16k", "gpt-3.5-turbo-0613", "gpt-3.5-turbo-16k-0613", diff --git a/pyproject.toml b/pyproject.toml index 5f0bdb0a24..1a4cd97cab 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "litellm" -version = "0.1.504" +version = "0.1.505" description = "Library to easily interface with LLM API providers" authors = ["BerriAI"] license = "MIT License"