From 0c8288b5e141a4aca1059312868a627230443159 Mon Sep 17 00:00:00 2001 From: Reinier van der Leer Date: Wed, 5 Jul 2023 22:36:17 +0200 Subject: [PATCH] Update OpenAI model ID mappings to `-0613` (#4889) --- autogpt/llm/providers/openai.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/autogpt/llm/providers/openai.py b/autogpt/llm/providers/openai.py index 397b479174c..baf7ab87f55 100644 --- a/autogpt/llm/providers/openai.py +++ b/autogpt/llm/providers/openai.py @@ -73,10 +73,10 @@ } # Set aliases for rolling model IDs chat_model_mapping = { - "gpt-3.5-turbo": "gpt-3.5-turbo-0301", + "gpt-3.5-turbo": "gpt-3.5-turbo-0613", "gpt-3.5-turbo-16k": "gpt-3.5-turbo-16k-0613", - "gpt-4": "gpt-4-0314", - "gpt-4-32k": "gpt-4-32k-0314", + "gpt-4": "gpt-4-0613", + "gpt-4-32k": "gpt-4-32k-0613", } for alias, target in chat_model_mapping.items(): alias_info = ChatModelInfo(**OPEN_AI_CHAT_MODELS[target].__dict__)