From 143897e0071a91b07e7bbaa0fb3458be61757ede Mon Sep 17 00:00:00 2001 From: jtung4 <126780548+jtung4@users.noreply.github.com> Date: Fri, 14 Apr 2023 16:23:20 +0800 Subject: [PATCH] Update app.ts --- app/store/app.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app/store/app.ts b/app/store/app.ts index 813668905..4b6d36ea7 100644 --- a/app/store/app.ts +++ b/app/store/app.ts @@ -138,19 +138,19 @@ const DEFAULT_CONFIG: ChatConfig = { sendBotMessages: true as boolean, submitKey: SubmitKey.CtrlEnter as SubmitKey, avatar: "1f603", - fontSize: 14, + fontSize: 16, theme: Theme.Auto as Theme, tightBorder: false, - sendPreviewBubble: true, + sendPreviewBubble: false, sidebarWidth: 300, disablePromptHint: false, modelConfig: { - model: "gpt-3.5-turbo", - temperature: 1, - max_tokens: 2000, - presence_penalty: 0, + model: "gpt-4", + temperature: 0.7, + max_tokens: 8000, + presence_penalty: 0.5, }, };