From 25015edfb92b07afca0a456638ad0e5fec9b5e67 Mon Sep 17 00:00:00 2001 From: Vid Luther Date: Thu, 16 May 2024 09:02:37 -0500 Subject: [PATCH] feat: update GPT4Turbo model name Change GPT4Turbo enum from 'gpt-4-turbo-preview' to 'gpt-4-turbo' to reflect the transition of the model from preview to general availability. This update ensures our application references the correct model version in line with OpenAI's latest offerings. --- app/src/lib/ai/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/lib/ai/types.ts b/app/src/lib/ai/types.ts index a72c04a8b..5f72bc189 100644 --- a/app/src/lib/ai/types.ts +++ b/app/src/lib/ai/types.ts @@ -7,7 +7,7 @@ export enum ModelKind { export enum OpenAIModelName { GPT35Turbo = 'gpt-3.5-turbo', GPT4 = 'gpt-4', - GPT4Turbo = 'gpt-4-turbo-preview', + GPT4Turbo = 'gpt-4-turbo', GPT4o = 'gpt-4o' }