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. mod data; /// Supported TTS model ids. mod model; /// Request body types. mod request; pub use data::*; pub use model::*; pub use request::*;