From 44efae21567a7091a90b3a3ab8646047cd551936 Mon Sep 17 00:00:00 2001 From: Xin Wang Date: Sun, 7 Jun 2026 20:33:28 +0800 Subject: [PATCH] Update knowledge base options in AssistantPage for improved clarity MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed the default knowledge base value from "政务政策知识库" to "无" and updated the options list to include "无" as the first choice. This adjustment enhances user understanding and provides a clearer selection for knowledge base configurations. --- src/components/pages/AssistantPage.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/pages/AssistantPage.tsx b/src/components/pages/AssistantPage.tsx index 84a4164..5239ae0 100644 --- a/src/components/pages/AssistantPage.tsx +++ b/src/components/pages/AssistantPage.tsx @@ -206,7 +206,7 @@ export function AssistantPage() { model: "DeepSeek-V3", asr: "SenseVoice", voice: "晓宁", - knowledgeBase: "政务政策知识库", + knowledgeBase: "无", enableInterrupt: true, }); const [view, setView] = useState<"list" | "choose" | "create" | "placeholder">( @@ -862,7 +862,7 @@ export function AssistantPage() { label="知识库" value={form.knowledgeBase} onChange={(value) => updateForm("knowledgeBase", value)} - options={["政务政策知识库", "售后知识库", "教育课程知识库", "医疗问答知识库"]} + options={["无", "政务政策知识库", "售后知识库", "教育课程知识库", "医疗问答知识库"]} />