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
//! ML-based end-of-turn detection — pure Rust, zero runtime dependencies.

mod whisper_features;
mod engine;
mod smart_turn;

pub use engine::{SmartTurnEngine, DEFAULT_WEIGHTS_PATH};
pub use smart_turn::{EndOfTurnState, SmartTurnAnalyzer, SmartTurnConfig, TurnMetrics};
pub use whisper_features::Precision;