wavekat-turn 0.0.6

Unified turn detection with multiple backends
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use thiserror::Error;

/// Errors that can occur during turn detection.
#[derive(Debug, Error)]
pub enum TurnError {
    #[error("backend error: {0}")]
    BackendError(String),

    #[error("invalid input: {0}")]
    InvalidInput(String),

    #[error("model not loaded: {0}")]
    ModelNotLoaded(String),
}