1 2 3 4 5 6 7 8 9 10 11 12 13
//! `OpenAI` provider driver — chat completions, streaming, structured //! outputs, and tool use. pub mod converters; mod generation; mod provider; pub mod reasoning; pub mod response_builder; pub mod search; mod streaming; mod trait_impl; pub use provider::OpenAiProvider;