Update app.ts

This commit is contained in:
jtung4 2023-04-14 16:23:20 +08:00 committed by GitHub
parent 527eb53472
commit 143897e007
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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,
},
};