From e0f4615b559c89557c24f90dcac4df1afa0bb599 Mon Sep 17 00:00:00 2001 From: DirkSchlossmacher <62424946+DirkSchlossmacher@users.noreply.github.com> Date: Thu, 15 Jun 2023 10:48:23 +0200 Subject: [PATCH] Update config.ts gpt-4 + 8000 tokens --- app/store/config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/store/config.ts b/app/store/config.ts index e837011a9..cb415a044 100644 --- a/app/store/config.ts +++ b/app/store/config.ts @@ -30,9 +30,9 @@ export const DEFAULT_CONFIG = { dontShowMaskSplashScreen: false, // dont show splash screen when create chat modelConfig: { - model: "gpt-3.5-turbo" as ModelType, + model: "gpt-4" as ModelType, temperature: 0.5, - max_tokens: 2000, + max_tokens: 8000, presence_penalty: 0, sendMemory: true, historyMessageCount: 4,