From 8bf2237e91680aadb8209df7d9be7fed11bd42f7 Mon Sep 17 00:00:00 2001 From: ZhaoLiu Date: Mon, 8 May 2023 10:23:29 +0800 Subject: [PATCH] fix error --- app/store/config.ts | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/app/store/config.ts b/app/store/config.ts index 1e9ce1bcb..d87da42ba 100644 --- a/app/store/config.ts +++ b/app/store/config.ts @@ -49,25 +49,25 @@ export type ChatConfigStore = ChatConfig & { export type ModelConfig = ChatConfig["modelConfig"]; -const ENABLE_GPT4 = true; +const ENABLE_GPT4 = false; export const ALL_MODELS = [ - // { - // name: "gpt-4", - // available: ENABLE_GPT4, - // }, - // { - // name: "gpt-4-0314", - // available: ENABLE_GPT4, - // }, - // { - // name: "gpt-4-32k", - // available: ENABLE_GPT4, - // }, - // { - // name: "gpt-4-32k-0314", - // available: ENABLE_GPT4, - // }, + { + name: "gpt-4", + available: ENABLE_GPT4, + }, + { + name: "gpt-4-0314", + available: ENABLE_GPT4, + }, + { + name: "gpt-4-32k", + available: ENABLE_GPT4, + }, + { + name: "gpt-4-32k-0314", + available: ENABLE_GPT4, + }, { name: "gpt-3.5-turbo", available: true,