Skip to main content

hippmem_model/api/
mod.rs

1//! API backends: OpenAI/Anthropic/Cohere clients (08 §3).
2//!
3//! Gated by the `api-backends` feature; not compiled by default in CI.
4
5#[cfg(feature = "api-backends")]
6pub mod anthropic;
7#[cfg(feature = "api-backends")]
8pub mod cohere;
9#[cfg(feature = "api-backends")]
10pub mod openai;