From 21b636cb63902dcd874cbe99524cd0e9693f12fb Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Thu, 3 Aug 2023 10:46:05 -0700 Subject: [PATCH] new models --- litellm/__init__.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/litellm/__init__.py b/litellm/__init__.py index 01e40bc69..06749d8c0 100644 --- a/litellm/__init__.py +++ b/litellm/__init__.py @@ -9,8 +9,16 @@ api_base = None headers = None ####### COMPLETION MODELS ################### open_ai_chat_completion_models = [ + "gpt-4", + "gpt-4-0613", + "gpt-4-32k", + "gpt-4-32k-0613", + ################# + "gpt-3.5-turbo", + "gpt-3.5-turbo-16k", + "gpt-3.5-turbo-0613", + "gpt-3.5-turbo-16k-0613", 'gpt-3.5-turbo', - 'gpt-4', 'gpt-3.5-turbo-16k-0613', 'gpt-3.5-turbo-16k' ]