Hybrid search uses vector search, a beta feature
available in versions
0.25.0 and above.Fusing by Rank
BM25 scores and vector distances operate on different scales, so they cannot be added together directly. ParadeDB’s hybrid examples use Reciprocal Rank Fusion, which discards raw scores and uses only each row’s position, or rank, in each result list. With rank fusion, a row that ranks first contributes the same amount whether its BM25 score was1 or 100. That makes text and vector results comparable
without forcing them onto a shared scoring scale.