brainwires-rag 0.11.0

Codebase indexing + hybrid retrieval (vector + BM25) for the Brainwires Agent Framework. Includes AST-aware chunking via tree-sitter (12 languages), Git history search, and reranking via spectral diversity / cross-encoder.
Documentation
1
2
3
4
5
6
7
8
//! Embedding provider re-exports.
//!
//! Canonical embedding infrastructure lives in `brainwires-storage`; this module
//! re-exports it so RAG code can import from a single path. The trait itself is
//! `brainwires_core::EmbeddingProvider`.

pub use brainwires_core::EmbeddingProvider;
pub use brainwires_storage::embeddings::{CachedEmbeddingProvider, FastEmbedManager};