1 2 3 4 5 6 7 8 9 10 11 12 13
//! ADK Rust MCP Speech Server Library //! //! This library provides text-to-speech capabilities using Google Cloud TTS Chirp3-HD API. #![cfg_attr(docsrs, feature(doc_cfg))] pub mod handler; pub mod server; pub use handler::{ GeneratedAudio, Pronunciation, SpeechHandler, SpeechSynthesizeParams, SpeechSynthesizeResult, }; pub use server::SpeechServer;