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