From e73980ef3d75a82ef507110fbbdc92e1b56e40a5 Mon Sep 17 00:00:00 2001 From: Ilias Ism Date: Fri, 24 May 2024 08:31:37 +0200 Subject: [PATCH] Update OpenAI Model versions https://platform.openai.com/docs/models/gpt-4-turbo-and-gpt-4 gpt-4o, gpt-4-turbo, gpt-4, and gpt-3.5-turbo point to their respective latest model version --- package.json | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/package.json b/package.json index b51218fe..cc6cd82c 100644 --- a/package.json +++ b/package.json @@ -1115,15 +1115,9 @@ "default": "gpt-3.5-turbo", "enum": [ "gpt-3.5-turbo", - "gpt-3.5-turbo-16k", - "gpt-3.5-turbo-0301", - "gpt-3.5-turbo-0613", "gpt-4", - "gpt-4-0314", - "gpt-4-0613", - "gpt-4-32k", - "gpt-4-32k-0314", - "gpt-4-32k-0613" + "gpt-4-turbo", + "gpt-4o" ], "description": "%config.openai_api_model%" },