new models

This commit is contained in:
ishaan-jaff 2023-08-03 10:46:05 -07:00
parent a8b3fc6c2d
commit 21b636cb63

View file

@ -9,8 +9,16 @@ api_base = None
headers = None headers = None
####### COMPLETION MODELS ################### ####### COMPLETION MODELS ###################
open_ai_chat_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-3.5-turbo',
'gpt-4',
'gpt-3.5-turbo-16k-0613', 'gpt-3.5-turbo-16k-0613',
'gpt-3.5-turbo-16k' 'gpt-3.5-turbo-16k'
] ]