From 2ac8c79dd65d7eb82b5f0a7f1f0bf5aecb35a4f9 Mon Sep 17 00:00:00 2001 From: Leo Li Date: Fri, 26 Jan 2024 02:00:02 -0500 Subject: [PATCH] Add gpt-4-0125-preview (#3924) --- app/constant.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/app/constant.ts b/app/constant.ts index c1bbb0cf4f2..4c70cfb8f20 100644 --- a/app/constant.ts +++ b/app/constant.ts @@ -129,6 +129,7 @@ export const SUMMARIZE_MODEL = "gpt-3.5-turbo"; export const KnowledgeCutOffDate: Record = { default: "2021-09", "gpt-4-1106-preview": "2023-04", + "gpt-4-0125-preview": "2023-04", "gpt-4-vision-preview": "2023-04", "gemini-pro": "2023-12", // this need to changed which is the latest date are correctly }; @@ -235,6 +236,15 @@ export const DEFAULT_MODELS = [ providerType: "openai", }, }, + { + name: "gpt-4-0125-preview", + available: true, + provider: { + id: "openai", + providerName: "OpenAI", + providerType: "openai", + }, + }, { name: "gpt-4-vision-preview", available: true,