From 1bd50f5de2bc4add60bdcdfc73a0192591da737e Mon Sep 17 00:00:00 2001 From: ccmjga Date: Sun, 29 Jun 2025 11:12:14 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E8=81=8A=E5=A4=A9=E5=8A=9F?= =?UTF-8?q?=E8=83=BD=EF=BC=8C=E8=B0=83=E6=95=B4=E8=B0=83=E7=94=A8=20chat?= =?UTF-8?q?=20=E5=87=BD=E6=95=B0=E4=BB=A5=E6=94=AF=E6=8C=81=E4=BC=A0?= =?UTF-8?q?=E9=80=92=E7=9F=A5=E8=AF=86=E5=BA=93=E5=90=8D=E7=A7=B0=EF=BC=8C?= =?UTF-8?q?=E6=8F=90=E5=8D=87=E7=9F=A5=E8=AF=86=E5=BA=93=E4=BD=BF=E7=94=A8?= =?UTF-8?q?=E4=BD=93=E9=AA=8C=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/components/common/Assistant.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/common/Assistant.vue b/frontend/src/components/common/Assistant.vue index ba0a6b4..35ced99 100644 --- a/frontend/src/components/common/Assistant.vue +++ b/frontend/src/components/common/Assistant.vue @@ -404,7 +404,7 @@ const chatByMode = async ( } else { // 聊天模式,判断是否使用知识库 if (selectedLibraryId.value !== undefined) { - await chat(message, selectedLibraryId.value); + await chat(message, selectedLibraryId.value, selectedLibraryName.value); } else { await chat(message); }