wavekat-turn 0.0.6

Unified turn detection with multiple backends
Documentation
1
2
3
4
5
6
7
8
9
10
//! Audio-based turn detection backends.
//!
//! These backends operate directly on raw audio frames and do not
//! require an upstream ASR transcript.

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

#[cfg(feature = "pipecat")]
pub use pipecat::PipecatSmartTurn;