hippmem-model 0.1.0

Model backends for HIPPMEM — Embedder, Extractor, Reranker, Summarizer traits and registry
Documentation
1
2
3
4
5
6
7
8
9
10
//! API backends: OpenAI/Anthropic/Cohere clients (08 §3).
//!
//! Gated by the `api-backends` feature; not compiled by default in CI.

#[cfg(feature = "api-backends")]
pub mod anthropic;
#[cfg(feature = "api-backends")]
pub mod cohere;
#[cfg(feature = "api-backends")]
pub mod openai;