From dcf361c01d33ca7d57213d9f1cdb0af6005ea081 Mon Sep 17 00:00:00 2001 From: fenger7 <741262690@qq.com> Date: Mon, 13 May 2024 17:08:32 +0800 Subject: [PATCH] Update index.ts --- src/state/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/state/index.ts b/src/state/index.ts index 22ae1bd4..ea0ce009 100644 --- a/src/state/index.ts +++ b/src/state/index.ts @@ -49,10 +49,10 @@ export interface Prompt { } export const isImageOnly = getCookie('IMAGE_ONLY') !== '0' -export const bingConversationStyleAtom = atomWithStorage('bingConversationStyle', BingConversationStyle.Balanced, undefined, { unstable_getOnInit: true }) +export const bingConversationStyleAtom = atomWithStorage('bingConversationStyle', BingConversationStyle.Creative, undefined, { unstable_getOnInit: true }) export const voiceAtom = atomWithStorage('enableTTS', false, undefined, { unstable_getOnInit: true }) export const historyAtom = atomWithStorage('enableHistory', false, undefined, { unstable_getOnInit: true }) -export const gptAtom = atomWithStorage('enableGPT4', false, undefined, { unstable_getOnInit: true }) +export const gptAtom = atomWithStorage('enableGPT4', true, undefined, { unstable_getOnInit: true }) export const unlimitAtom = atomWithStorage('enableUnlimitedConversation', true, undefined, { unstable_getOnInit: true }) export const systemPromptsAtom = atomWithStorage('systemPrompts', '', undefined, { unstable_getOnInit: true }) export const localPromptsAtom = atomWithStorage('prompts', [], undefined, { unstable_getOnInit: true })