rustvani 0.1.0

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
10
11
pub mod base;
pub mod input;
pub mod output;
pub mod params;
pub mod websocket;

pub use base::BaseTransport;
pub use input::BaseInputTransport;
pub use output::{BaseOutputTransport, OutputMessage};
pub use params::TransportParams;
pub use websocket::{WebSocketParams, WebSocketTransport};