whisrs 0.1.6

Linux-first voice-to-text dictation tool with Groq, OpenAI, and local Whisper backends
Documentation
1
2
3
4
5
6
7
8
9
//! Audio capture, silence detection, and recovery.

pub mod capture;
pub mod feedback;
pub mod recovery;
pub mod silence;

/// A chunk of 16-bit PCM audio samples.
pub type AudioChunk = Vec<i16>;