From ba8bb01233a038d1c3c0a388ec2531943105035e Mon Sep 17 00:00:00 2001 From: DirkSchlossmacher <62424946+DirkSchlossmacher@users.noreply.github.com> Date: Wed, 17 Apr 2024 08:22:15 +0200 Subject: [PATCH] gpt-4-turbo --- 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 663537e4f..6dfb1ed2d 100644 --- a/app/store/config.ts +++ b/app/store/config.ts @@ -46,14 +46,14 @@ export const DEFAULT_CONFIG = { models: DEFAULT_MODELS as any as LLMModel[], modelConfig: { - model: "gpt-4-turbo-preview" as ModelType, + model: "gpt-4-turbo" as ModelType, temperature: 0.5, top_p: 1, max_tokens: 4000, presence_penalty: 0, frequency_penalty: 0, sendMemory: true, - historyMessageCount: 14, + historyMessageCount: 20, compressMessageLengthThreshold: 43210, enableInjectSystemPrompts: true, template: DEFAULT_INPUT_TEMPLATE,