autoagents-speech 0.3.7

Speech (TTS/STT) provider abstractions for AutoAgents
Documentation
1
2
3
4
5
6
7
8
9
10
//! Speech provider implementations
//!
//! This module contains concrete implementations of the TTS/STT providers.
//! Each provider is feature-gated and can be enabled individually.

#[cfg(feature = "pocket-tts")]
pub mod pocket_tts;

#[cfg(feature = "parakeet")]
pub mod parakeet;