From 98d865ae430630aacf62bf07b5e89396b4a83172 Mon Sep 17 00:00:00 2001 From: Srujan Gurram Date: Tue, 14 May 2024 08:53:56 +0530 Subject: [PATCH] Add GPT-4o to AvailableModels enum in index.ts --- src/config/settings/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/config/settings/index.ts b/src/config/settings/index.ts index c4855ecb..528e0303 100644 --- a/src/config/settings/index.ts +++ b/src/config/settings/index.ts @@ -9,6 +9,7 @@ export enum ThemeOptions { export enum AvailableModels { GPT_4_TURBO = 'gpt-4-turbo', GPT_4 = 'gpt-4', + GPT_4o = 'gpt-4o', GPT_3_5_TURBO = 'gpt-3.5-turbo', }