//! `OpenAI` API client implementation.
//!
//! This module provides a client for the `OpenAI` API, supporting:
//! - Chat completions (synchronous and streaming)
//! - Text-to-Speech (TTS)
//! - Speech-to-Text (STT/Whisper)
//! - Text embeddings
pub use OpenAI;
pub use OpenAIConfig;