Skip to main content

hippmem_model/
lib.rs

1//! HIPPMEM · Model backend layer
2//!
3//! Defines the four traits Embedder/Extractor/Reranker/Summarizer and their
4//! associated types, plus the ModelRegistry backend registration and selection hub.
5//!
6//! Corresponds to 08 §2 / §5.
7
8pub mod api;
9pub mod deterministic;
10pub mod error;
11pub mod lang;
12pub mod registry;
13pub mod traits;