mirror of
https://github.com/bytedance/deer-flow.git
synced 2026-09-11 14:38:38 +00:00
* feat(knowledge): add read-only RAGFlow retrieval * test(knowledge): cover RAGFlow retrieval contracts * docs(knowledge): document retrieval-only RAGFlow setup * refactor(knowledge): move RAGFlow settings to tool config * fix(ragflow): bind retrieval to configured datasets * docs(ragflow): record validated response versions * fix(ragflow): bind retrieval by dataset id * fix(ragflow): search all datasets by default * fix(ragflow): retrieve mixed embeddings by group * docs(ragflow): keep feature details out of agent guides * docs(ragflow): remove agent guide changes * docs(ragflow): remove root readme changes * fix(ragflow): handle unresolved and empty datasets * fix(ragflow): harden dataset scope and errors
97 lines
3.7 KiB
Python
97 lines
3.7 KiB
Python
"""Compact, citation-friendly formatting for RAGFlow retrieval results."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from collections.abc import Mapping
|
|
from typing import Any
|
|
|
|
|
|
def _truncate(value: str, max_chars: int, *, marker: str = "…") -> str:
|
|
if len(value) <= max_chars:
|
|
return value
|
|
if max_chars <= len(marker):
|
|
return marker[:max_chars]
|
|
return f"{value[: max_chars - len(marker)].rstrip()}{marker}"
|
|
|
|
|
|
def _document_aggregates(value: object) -> list[Mapping[str, Any]]:
|
|
if isinstance(value, list):
|
|
return [item for item in value if isinstance(item, Mapping)]
|
|
if isinstance(value, Mapping):
|
|
return [item for item in value.values() if isinstance(item, Mapping)]
|
|
return []
|
|
|
|
|
|
def _score(value: object) -> float | None:
|
|
if isinstance(value, bool):
|
|
return None
|
|
try:
|
|
return float(value)
|
|
except (TypeError, ValueError):
|
|
return None
|
|
|
|
|
|
def format_retrieval_result(
|
|
result: Mapping[str, Any],
|
|
*,
|
|
dataset_names_by_id: Mapping[str, str],
|
|
max_chars_per_chunk: int = 800,
|
|
max_total_chars: int = 8000,
|
|
) -> str:
|
|
"""Format one RAGFlow retrieval response into compact cited text.
|
|
|
|
Verified against RAGFlow v0.26.4 and v0.27.0: the REST retrieval endpoint
|
|
normalizes response chunk fields before returning them (for example,
|
|
``kb_id`` becomes ``dataset_id``). Only those public response field names
|
|
are consumed, and dataset IDs are mapped back to the operator-configured
|
|
names before anything reaches the model.
|
|
"""
|
|
raw_chunks = result.get("chunks")
|
|
if not isinstance(raw_chunks, list):
|
|
raw_chunks = []
|
|
chunks = [chunk for chunk in raw_chunks if isinstance(chunk, Mapping)]
|
|
if not chunks:
|
|
return "No relevant content found."
|
|
|
|
aggregates = _document_aggregates(result.get("doc_aggs"))
|
|
document_names_by_id = {str(item["doc_id"]): str(item["doc_name"]) for item in aggregates if item.get("doc_id") and item.get("doc_name")}
|
|
|
|
entries: list[str] = []
|
|
for index, chunk in enumerate(chunks, start=1):
|
|
dataset_id = chunk.get("dataset_id")
|
|
dataset_name = dataset_names_by_id.get(str(dataset_id), "Unknown dataset")
|
|
|
|
document_id = chunk.get("document_id")
|
|
document_name = chunk.get("document_keyword")
|
|
if not document_name and document_id:
|
|
document_name = document_names_by_id.get(str(document_id))
|
|
document_name = str(document_name or "Unknown document")
|
|
|
|
similarity = _score(chunk.get("similarity"))
|
|
score_suffix = f" (score {similarity:.2f})" if similarity is not None else ""
|
|
content = str(chunk.get("content") or "").strip()
|
|
content = _truncate(content, max_chars_per_chunk)
|
|
entries.append(f"[{index}] {dataset_name} / {document_name}{score_suffix}\n{content}")
|
|
|
|
if aggregates:
|
|
summaries: list[str] = []
|
|
for item in aggregates:
|
|
name = item.get("doc_name")
|
|
if not name:
|
|
continue
|
|
count = item.get("count")
|
|
count_text = str(count) if isinstance(count, int) and not isinstance(count, bool) else "?"
|
|
unit = "chunk" if count == 1 else "chunks"
|
|
summaries.append(f"{name} ({count_text} {unit})")
|
|
if summaries:
|
|
entries.append(f"Matched documents: {', '.join(summaries)}")
|
|
|
|
formatted = "\n\n".join(entries)
|
|
truncation_marker = "… (response truncated)"
|
|
if len(formatted) <= max_total_chars:
|
|
return formatted
|
|
if max_total_chars <= len(truncation_marker):
|
|
return truncation_marker[:max_total_chars]
|
|
prefix_length = max_total_chars - len(truncation_marker)
|
|
return f"{formatted[:prefix_length].rstrip()}{truncation_marker}"
|