basemind 0.17.0

Full AI context layer over MCP — tree-sitter code-map, document RAG (PDF/Office/HTML/email + OCR + reranker), shared agent memory, on-demand web crawl, git history + blame + per-symbol diff. 300+ languages, 10+ coding-agent harnesses, content-addressed Fjall + LanceDB.
1
2
3
4
5
6
7
8
9
10
11
12
//! Ranked retrieval over the code-search substrate.
//!
//! [`bm25`] is the native Okapi BM25 keyword lane over code chunks — the counterpart to the
//! LanceDB vector lane, sharing the same `chunk_id` document identity. Phase 3 will add an RRF
//! fusion layer (`rrf`) that blends this lane, the vector lane, and an exact symbol lane.

#[cfg(feature = "code-search")]
pub mod bm25;
#[cfg(feature = "code-search")]
pub mod exact;
#[cfg(feature = "code-search")]
pub mod rrf;