From 6f4c6aaf182411d44ecd3ed38461692cb319cd89 Mon Sep 17 00:00:00 2001 From: weaigc <879821485@qq.com> Date: Thu, 9 Nov 2023 23:48:54 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E9=BB=98=E8=AE=A4=E5=BC=80=E5=90=AF?= =?UTF-8?q?=E6=97=A0=E9=99=90=E5=AF=B9=E8=AF=9D=E6=A8=A1=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/state/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/state/index.ts b/src/state/index.ts index 741535a5..2bb88302 100644 --- a/src/state/index.ts +++ b/src/state/index.ts @@ -57,7 +57,7 @@ export const isImageOnly = getCookie('IMAGE_ONLY') !== '0' export const bingConversationStyleAtom = atomWithStorage('bingConversationStyle', BingConversationStyle.Balanced, 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 unlimitAtom = atomWithStorage('enableUnlimitedConversation', false, 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 })