Codebase indexing + hybrid retrieval (vector + BM25) for the rullama agent framework. Includes AST-aware chunking via tree-sitter (12 languages), Git history search, and reranking via spectral diversity / cross-encoder.
//! Embedding provider re-exports.
//!//! Canonical embedding infrastructure lives in `rullama-storage`; this module
//! re-exports it so RAG code can import from a single path. The trait itself is
//! `rullama_core::EmbeddingProvider`.
pubuserullama_core::EmbeddingProvider;pubuserullama_storage::embeddings::{CachedEmbeddingProvider, FastEmbedManager};