//! Input parameters for the voice_input tool.
useserde::Deserialize;/// Parameters accepted by the `voice_input` tool.
#[derive(Deserialize)]pubstructParams{/// Action to perform (e.g. "record_then_transcribe").
pubaction: String,
/// Optional max recording duration in seconds.
#[serde(default)]pubmax_duration_secs:Option<u64>,
}