#![allow( clippy::cast_possible_truncation, clippy::cast_sign_loss, clippy::cast_precision_loss, clippy::cast_possible_wrap )] //! Provider-facing DTOs: chat completion request, response, and usage/cost. pub mod request; pub mod response; pub mod usage;