objectiveai_api/chat/
mod.rs

1//! Chat completions with Ensemble LLMs.
2//!
3//! This module provides the chat completions API, which generates text responses
4//! from Ensemble LLMs. It supports both unary and streaming responses.
5
6/// Chat completions client and related types.
7pub mod completions;