You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Two bugs in all 5 search modules (docs, code, knowledge, tasks, skills):
1. RRF/BM25 scores were not normalized to 0-1, so minScore (default 0.5)
filtered out all results (RRF scores are always < 0.033)
2. Zero-score vector results were included in RRF fusion, producing
false positives for unknown queries
Fix: filter zero-score vectors before fusion, normalize RRF/BM25 scores
to 0-1, and fall back to pure BM25 when vector returns nothing.
0 commit comments