Skip to main content

objectiveai_api/ensemble/
mod.rs

1//! Ensemble management, fetching, and retrieval.
2//!
3//! Ensembles are collections of Ensemble LLMs used together for voting.
4//! This module provides clients for listing, retrieving, and fetching ensembles.
5
6mod client;
7/// Fetchers for retrieving ensemble definitions by ID.
8pub mod fetcher;
9/// Retrieval clients for listing ensembles and getting usage statistics.
10pub mod retrieval_client;
11
12pub use client::*;