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.
56/// Chat completions client and related types.
7pub mod completions;