diff --git a/src/components/pages/AssistantPage.tsx b/src/components/pages/AssistantPage.tsx index 65b7475..08b7b1b 100644 --- a/src/components/pages/AssistantPage.tsx +++ b/src/components/pages/AssistantPage.tsx @@ -19,6 +19,8 @@ import { ChevronRight, Bug, Save, + Mic, + Volume2, } from "lucide-react"; import { Button } from "@/components/ui/button"; @@ -796,34 +798,46 @@ export function AssistantPage() { )} {form.runtimeMode === "pipeline" && ( - } - title="Pipeline 配置" - description="选择 ASR、LLM 和 TTS 组成级联语音管线" - > -
+ <> + } + title="LLM 配置" + description="选择驱动对话理解与生成的大语言模型" + > updateForm("model", value)} options={["DeepSeek-V3", "Qwen-Max", "Kimi-K2", "Doubao-Pro", "GPT-4o"]} /> + + } + title="ASR 配置" + description="选择将用户语音转为文本的识别引擎" + > updateForm("asr", value)} options={["SenseVoice", "Paraformer", "Whisper", "FunASR"]} /> + + } + title="TTS 配置" + description="选择助手播报回复时使用的合成音色" + > updateForm("voice", value)} options={["晓宁", "晓美", "晓宇", "晓晨"]} /> -
-
+ + )}