[Bug] Memory settings toggle (“启用记忆功能”) does not persist on page refresh (missing API persistence call)
![[Bug] Memory settings toggle ("启用记忆功能") does not persist on page refresh (missing API persistence call)](https://www.chat-gpts.plus/wp-content/uploads/2026/08/18156-728ea694-768x403.jpg)
这是 LobeChat 设置页中“启用记忆功能”开关被 Tooltip 组件包裹,导致表单无法将切换事件传递给 Switch 组件,因此没有触发后端持久化 API。优先检查该开关的代码结构,移除外层 Tooltip 让 Switch 成为表单项的直接子组件。
![[Bug] Memory settings toggle ("启用记忆功能") does not persist on page refresh (missing API persistence call)](https://www.chat-gpts.plus/wp-content/uploads/2026/08/18156-728ea694-768x403.jpg)
这是 LobeChat 设置页中“启用记忆功能”开关被 Tooltip 组件包裹,导致表单无法将切换事件传递给 Switch 组件,因此没有触发后端持久化 API。优先检查该开关的代码结构,移除外层 Tooltip 让 Switch 成为表单项的直接子组件。

该报错发生在 MCP Python SDK(1.x 版本)中,当客户端发送 notifications/cancelled 取消一个正在处理的请求(如 tools/call )时,服务端的 RequestResponder.cancel 会额外向对方发送一条 Request cancelled 错误
![[Bug]: Failed to add the siliconflow model in version 0.22.1](https://www.chat-gpts.plus/wp-content/uploads/2026/08/11515-8122380b-768x403.jpg)
该报错出现在 RAGFlow v0.22.1 中添加 SiliconFlow 模型时,通常是因为 RAGFlow 会对 API Key 执行真实的远程调用验证,因此 401 错误多由 Key 本身无效、复制粘贴带入多余字符或网络无法连通 SiliconFlow 接口导致。优先检查 API Key 的
![[Question]: Ragflow frontend build failed](https://www.chat-gpts.plus/wp-content/uploads/2026/08/11566-887690ef-768x403.jpg)
该报错通常发生在拉取 RAGFlow 最新代码后未同步前端常量模块重构时,`npm i` 后构建失败。优先排查 `src/pages/agent/utils.ts` 的导入路径是否与最新导出结构一致。
![[Question]: After creating an agent in version 0.21.1, the screen goes blank and nothing is displayed.](https://www.chat-gpts.plus/wp-content/uploads/2026/08/11734-d8142ce2-768x403.jpg)
在 RAGFlow 0.21.1 中创建 Agent 后页面白屏,通常是由前端 React 钩子( useGetBeginNodeDataInputs )每次渲染都返回新数组引用,导致无限递归并最终触发栈溢出("too much recursion")造成的。优先打开浏览器控制台(F12)确认识别到

这个报错发生在 Gradio gr.ChatInterface 中,当你在聊天函数内部修改 history 时,流式(streaming)与非流式(non-streaming)模式的修改结果不一致。优先排查你使用的是生成器(yield)还是普通函数(return),因为两者的历史记录处理路径不同。

该报错发生在 Gradio 默认 `gr.load_chat(...)` 聊天界面中,当用户先粘贴超长文本(被 Gradio 包装为 `text_encoded`)再发送短文本时,历史消息中的长文本被错误编码为图片请求,导致后端 vLLM 报 `model is not multimodal` 错误
![[Bug]: Function tools fail with reasoning_effort error for OpenAI gpt-5.6 family models (gpt-5.6-sol/luna/terra) on /chat/completions](https://www.chat-gpts.plus/wp-content/uploads/2026/08/33221-939ffc10-768x403.jpg)
此报错发生在 LiteLLM 代理上,当对 OpenAI gpt-5.6 系列模型(gpt-5.6-sol/luna/terra)调用 /chat/completions 并携带 function tools 时触发,即使请求体中未显式设置 reasoning_effort 也会报 400 错误。优

该问题发生在 llama-server 的 per-sequence slot 状态恢复失败后,同一进程内的后续 completion 会持续损坏或返回空结果,重启进程才能恢复正常。优先排查 KV cache 的 slot 恢复/回滚路径,而不是模型或硬件配置。

该问题在 macOS Safari 上使用日文输入法时触发,按下“确定”键(Enter)会提前提交未完成的查询。优先排查 ChatForm.svelte 与 ChatMessage.svelte 中 Enter 键处理逻辑,确认是否在 IME 组合状态下误触发了提交。