Skip to main content

adk_rust_mcp_speech/
lib.rs

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