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
7
//! Streaming LLM client (OpenAI-compatible SSE) and clause splitting.

pub mod client;
pub mod splitter;

pub use client::{parse_sse_line, LlmClient, Message};
pub use splitter::ClauseSplitter;