From ef095214b7bf792d0bd566bc24d0f23bd81baa81 Mon Sep 17 00:00:00 2001 From: Niko Date: Wed, 30 Jul 2025 17:38:15 -0700 Subject: [PATCH] Publicly export the VAD structs --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index fa63e12..cf20757 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -32,6 +32,7 @@ pub use whisper_params::{FullParams, SamplingStrategy, SegmentCallbackData}; #[cfg(feature = "raw-api")] pub use whisper_rs_sys; pub use whisper_state::WhisperState; +pub use whisper_vad::*; pub type WhisperSysContext = whisper_rs_sys::whisper_context; pub type WhisperSysState = whisper_rs_sys::whisper_state;