diff --git a/components/QuillEditor.tsx b/components/QuillEditor.tsx index 92b550c..ba54fe5 100644 --- a/components/QuillEditor.tsx +++ b/components/QuillEditor.tsx @@ -220,7 +220,7 @@ const QEditor = ({ lng }) => { useEffect(() => { if (showAnnouncement) { toast( - "📢 如果遇到模型无法响应的情况,建议右上角切换为deepseek模型(强于3.5,弱于4),同时这里也要选择deepseek", + "📢 如果遇到模型无法响应的情况,建议右上角切换为coze模型(也是gpt4)", { position: "top-center", autoClose: false, // 设置为 false,使得公告需要用户手动关闭,确保用户看到公告信息 diff --git a/components/Settings.tsx b/components/Settings.tsx index 2750e21..4abe00c 100644 --- a/components/Settings.tsx +++ b/components/Settings.tsx @@ -76,7 +76,7 @@ const Settings = ({ lng }: { lng: string }) => { //state const [userConfigNumber, setUserConfigNumber] = useLocalStorage( "userConfigNumber", - "2" + "3" ); const toggleSwitch = (currentState: any, setState: any) => { setState(!currentState);