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
11
12
//! Per-language tree-sitter symbol extractors.
//!
//! Each `langs::<lang>` module is feature-gated. The umbrella `code-aware`
//! feature is implied by any per-grammar feature; turning on
//! `code-aware-python` pulls in `tree-sitter` + `tree-sitter-python` + the
//! Python extractor.

#[cfg(feature = "code-aware-python")]
pub mod python;

#[cfg(feature = "code-aware-java")]
pub mod java;