atomr_agents_stt_tool/lib.rs
1//! Adapters that expose speech-to-text capability inside the
2//! atomr-agents framework as a [`Tool`] (callable by the model) and
3//! as a [`Skill`] (declarative bundle that opts an agent into voice
4//! input).
5
6mod skill;
7mod tool;
8
9pub use skill::voice_input_skill;
10pub use tool::TranscribeTool;