From 2f5c3ed6a49626731e4e035fb728df6f55e0797d Mon Sep 17 00:00:00 2001 From: Wenjie Zhang Date: Thu, 18 Dec 2025 12:21:40 +0800 Subject: [PATCH] =?UTF-8?q?fix(web):=20=E4=BF=AE=E6=AD=A3=E6=8C=89?= =?UTF-8?q?=E9=92=AE=E6=96=87=E6=9C=AC=E6=8F=8F=E8=BF=B0=E4=BB=8E"?= =?UTF-8?q?=E9=80=89=E6=8B=A9=E5=A4=B1=E8=B4=A5"=E5=88=B0"=E9=80=89?= =?UTF-8?q?=E6=8B=A9=E6=89=80=E6=9C=89=E5=A4=B1=E8=B4=A5=E7=9A=84=E6=96=87?= =?UTF-8?q?=E4=BB=B6"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/latest/changelog/roadmap.md | 1 + web/src/components/FileTable.vue | 2 +- web/src/components/QuerySection.vue | 4 ++++ 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/latest/changelog/roadmap.md b/docs/latest/changelog/roadmap.md index 010f0cc9..53497c14 100644 --- a/docs/latest/changelog/roadmap.md +++ b/docs/latest/changelog/roadmap.md @@ -10,6 +10,7 @@ - 集成 neo4j mcp (或者自己构建工具) - 文档解析部分的 markdown 中的图片替换为内部可访问的链接 (2/4) - chat_model 的 call 需要异步 +- 优化分块儿逻辑,移除 QA 分块,集成到普通分块儿中 ### Bugs - 部分异常状态下,智能体的模型名称出现重叠[#279](https://github.com/xerrors/Yuxi-Know/issues/279) diff --git a/web/src/components/FileTable.vue b/web/src/components/FileTable.vue index be988306..a61ebf8b 100644 --- a/web/src/components/FileTable.vue +++ b/web/src/components/FileTable.vue @@ -56,7 +56,7 @@ :disabled="lock" title="选择所有失败的文件" > - 选择失败 + 选择所有失败的文件
diff --git a/web/src/components/QuerySection.vue b/web/src/components/QuerySection.vue index a3df6a0d..507cae96 100644 --- a/web/src/components/QuerySection.vue +++ b/web/src/components/QuerySection.vue @@ -63,6 +63,7 @@
store.state.searchLoading); const queryResult = ref(''); const showRawData = ref(true); +// 判断是否为 LightRAG 类型知识库 +const isLightRAG = computed(() => store.database?.kb_type?.toLowerCase() === 'lightrag'); + // 查询测试 const queryText = ref('');