//! Windows-native voice via WASAPI.
//!
//! Replaces PowerShell-mediated audio with direct Windows Audio Session API
//! calls for lower latency and better reliability than shelling out.
pub use WavCapture;
pub use WavPlayer;
/// Record audio from the default microphone.
///
/// Wraps WASAPI capture to produce 16-bit, 16 kHz mono WAV bytes.
///
/// # Errors
///
/// Returns an error if the audio device is unavailable or capture fails.
/// Play WAV audio through the default speakers.
///
/// # Errors
///
/// Returns an error if the audio device is unavailable.