skadoosh 0.1.0

Modular, low-latency local voice agent framework: VAD → Whisper STT → streaming LLM → ONNX TTS with barge-in
Documentation
1
2
3
4
5
6
//! Speech-to-text via whisper-rs on a dedicated blocking std thread, so the
//! synchronous whisper.cpp API stays off the async runtime.

pub mod whisper;

pub use whisper::{SttConfig, WhisperStt};