//! # VIL Audio Transcription (I03)
//!
//! Infrastructure and traits for audio-to-text transcription.
//! This crate provides the trait definitions, result types, and audio format
//! detection. Actual transcription backends (Whisper, etc.) plug in via the
//! `Transcriber` trait.
//!
//! ## Quick Start
//!
//! ```rust
//! use vil_audio::{AudioFormat, detect_format, TranscriptConfig};
//!
//! let wav_header = b"RIFF\x00\x00\x00\x00WAVEfmt ";
//! assert_eq!(detect_format(wav_header), AudioFormat::Wav);
//!
//! let config = TranscriptConfig::new().language("en").timestamps(true);
//! ```
pub use TranscriptConfig;
pub use ;
pub use AudioPlugin;
pub use ;
pub use ;
pub use ;