pleme-codesearch 0.1.142

Fast, local semantic code search powered by Rust — BM25, vector embeddings, tree-sitter AST
Documentation
1
2
3
4
5
6
7
8
//! Full-text search module using Tantivy
//!
//! Provides BM25-based full-text search to complement vector similarity search.
//! Used in hybrid search mode with RRF (Reciprocal Rank Fusion).

mod tantivy_store;

pub use tantivy_store::{FtsResult, FtsStore};