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 })