whis-core 0.6.2

Core library for whis voice-to-text functionality
Documentation
1
2
3
4
5
6
7
8
9
//! Shared application state types

/// Recording state for UI applications
#[derive(Debug, Clone, Copy, PartialEq, serde::Serialize)]
pub enum RecordingState {
    Idle,
    Recording,
    Transcribing,
}