chunkshop-rs 0.8.2

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
8
9
10
//! Stub — filled in Task 13.
#[derive(Debug, Clone)]
pub struct Symbol {
    pub name: String,
    pub fqn: String,
    pub symbol_type: String,
    pub line_start: u32,
    pub line_end: u32,
    pub parent_name: Option<String>,
}