diff --git a/rust-whisper-baked-lib/src/lib.rs b/rust-whisper-baked-lib/src/lib.rs index 29b03cc..d757aaf 100644 --- a/rust-whisper-baked-lib/src/lib.rs +++ b/rust-whisper-baked-lib/src/lib.rs @@ -25,6 +25,7 @@ pub fn wav_channel( ) where F: FnMut(Result) + Send + 'static { flags.model_path = None; flags.model_buffer = Some(include_bytes!("../../models/ggml-base.en.bin").to_vec()); + flags.model_buffer = Some(include_bytes!("../../models/ggml-distil-medium.en.bin").to_vec()); rust_whisper_lib::wav_channel(flags, handler_fn); }