rustvani 0.4.0-dev.1

Voice AI framework for Rust — real-time speech pipelines with STT, LLM, TTS, and Dhara conversation flows
1
2
3
4
5
6
7
8
9
pub mod deepgram;
#[cfg(feature = "tts-piper")]
pub mod piper;
pub mod sarvam;

pub use deepgram::{DeepgramEncoding, DeepgramTtsConfig, DeepgramTtsHandler};
#[cfg(feature = "tts-piper")]
pub use piper::{PiperModel, PiperQuality, PiperTtsConfig, PiperTtsHandler};
pub use sarvam::{SarvamTtsConfig, SarvamTtsHandler, TtsModelConfig, get_model_config};