chunkshop-rs 0.9.1

Standalone ingest-to-pgvector: source -> chunker -> embedder -> extractor -> table. int8 BGE by default; bakeoff matrix evaluator built in. Cross-language wire-format compatible with the Python `chunkshop` package.
Documentation
1
2
3
4
5
6
7
//! Code-aware chunkers — feature-gated. Existing prose/summarization
//! chunkers remain in the flat `crate::chunker` module (additive split
//! per RM-C plan: new code-aware module under chunkers/ avoids touching
//! the existing 2000+ line chunker.rs structurally).

#[cfg(all(feature = "code-aware", feature = "chunkers"))]
pub mod symbol_aware;