rto-graph 0.0.13

Provenance-tagged codebase knowledge graph store for Roteiro
Documentation
//! Pluggable local embedding/generative models — the candle-backed loaders of
//! ADR-0003's `inference-local-models` tier.
//!
//! The candle-free parts (the model **registry**, per-platform variants, the
//! on-disk store layout, and SHA-256 verification) live in [`crate::models`], so
//! they can be shared by non-candle model tiers (e.g. OCR). This module holds
//! only the candle loaders: the sentence-transformer [`LocalEmbedder`] and the
//! GGUF instruct [`LocalGenerator`].
//!
//! Only built with `--features inference-local-models`.

mod embedder;
mod generator;
#[cfg(feature = "image-vision")]
mod vision;
pub use embedder::{LocalEmbedder, LocalModelError};
pub use generator::{GenConfig, LocalGenerator};
#[cfg(feature = "image-vision")]
pub use vision::LocalVlm;