Skip to main content

codesearch/fts/
mod.rs

1//! Full-text search module using Tantivy
2//!
3//! Provides BM25-based full-text search to complement vector similarity search.
4//! Used in hybrid search mode with RRF (Reciprocal Rank Fusion).
5
6mod tantivy_store;
7
8pub use tantivy_store::{FtsResult, FtsStore};