Fix naive ask report error (#18030)

This commit is contained in:
Wang Qi
2026-08-10 11:21:23 +08:00
committed by GitHub
parent 4a2bae715c
commit 3d41ebdded

View File

@@ -699,7 +699,7 @@ class Dealer:
d = {
"chunk_id": id,
"content_ltks": chunk["content_ltks"],
"content_with_weight": chunk["content_with_weight"],
"content_with_weight": chunk.get("content_with_weight", ""),
"doc_id": did,
"docnm_kwd": dnm,
"kb_id": chunk["kb_id"],