1 2 3 4 5 6 7
//! Shared search primitives: tokenizer + BM25 scoring. //! //! Used by both `repo_map::bm25` (code search) and `agent::swarm::knowledge` //! (inter-agent knowledge retrieval) to avoid duplicating the core algorithms. pub mod scoring; pub mod tokenizer;