objectiveai_api/ensemble_llm/mod.rs
1//! Ensemble LLM management, fetching, and retrieval.
2//!
3//! An Ensemble LLM is a fully-specified configuration of a single upstream LLM,
4//! including model identity, prompt structure, decoding parameters, and output mode.
5
6mod client;
7/// Fetchers for retrieving Ensemble LLM definitions by ID.
8pub mod fetcher;
9/// Retrieval clients for listing Ensemble LLMs and getting usage statistics.
10pub mod retrieval_client;
11
12pub use client::*;