From 294dff47017448cb16b38f3650a594e5f6442edc Mon Sep 17 00:00:00 2001 From: Haruko386 Date: Tue, 21 Jul 2026 16:47:12 +0800 Subject: [PATCH] fix: add chunk_method field to document handler (#17154) ### Summary As title --- internal/handler/document.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/handler/document.go b/internal/handler/document.go index 017e792445..fc73475bfa 100644 --- a/internal/handler/document.go +++ b/internal/handler/document.go @@ -1038,6 +1038,7 @@ func mapDocumentListItem(doc *entity.DocumentListItem, metaFields map[string]int "run": mapRunStatus(doc.Run), "status": stringValue(doc.Status), "parser_id": doc.ParserID, + "chunk_method": doc.ParserID, "pipeline_id": stringValue(doc.PipelineID), "pipeline_name": stringValue(doc.PipelineName), "nickname": stringValue(doc.Nickname),