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
9
10
11
12
//! Git repository operations for semantic search over commit history
//!
//! Provides functionality to walk git repositories, extract commit information,
//! and chunk commits into searchable units for vector indexing.

/// Commit chunking for converting git commits into searchable text chunks
pub mod chunker;
/// Git repository walking and commit extraction
pub mod walker;

pub use chunker::CommitChunker;
pub use walker::GitWalker;