wavekat-turn 0.0.6

Unified turn detection with multiple backends
Documentation
1
2
3
4
5
6
7
8
9
10
//! Text-based turn detection backends.
//!
//! These backends operate on ASR transcript text and optionally
//! use conversation history for context-aware predictions.

#[cfg(feature = "livekit")]
mod livekit;

#[cfg(feature = "livekit")]
pub use livekit::LiveKitEou;