1 2 3 4 5 6 7 8 9 10 11 12
//! Text-to-speech synthesis (TTS) — generate audio from text. /// Request builder and client for text-to-speech. pub mod data; /// Supported TTS model ids. pub mod model; /// Request body types. pub mod request; pub use data::*; pub use model::*; pub use request::*;