From a57312786aadeef80770d80a036e705258735fd7 Mon Sep 17 00:00:00 2001 From: Bel LaPointe <153096461+breel-render@users.noreply.github.com> Date: Tue, 2 Jan 2024 17:48:17 -0700 Subject: [PATCH] gr --- rust-whisper-baked-lib/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust-whisper-baked-lib/src/lib.rs b/rust-whisper-baked-lib/src/lib.rs index d757aaf..2bbb8ef 100644 --- a/rust-whisper-baked-lib/src/lib.rs +++ b/rust-whisper-baked-lib/src/lib.rs @@ -24,8 +24,8 @@ pub fn wav_channel( handler_fn: F ) 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()); + flags.model_buffer = Some(include_bytes!("../../models/ggml-base.en.bin").to_vec()); rust_whisper_lib::wav_channel(flags, handler_fn); }