fix comment indentation

This commit is contained in:
2025-11-04 22:38:40 +00:00
parent fd0502e58c
commit 95a1acc3c9
+1 -1
View File
@@ -1492,7 +1492,7 @@ def hybrid_search(query: str, k: int = 30) -> List[Tuple[str, Dict[str, Any], fl
# Sort by fused score descending
sorted_items = sorted(fused.items(), key=lambda x: x[1], reverse=True)
# Build accurate mapping from document text to its true metadata
# Build accurate mapping from document text to its true metadata
text_to_meta = {text: meta for text, meta in zip(bm25_corpus, chunks_metadata)}
results = []