From 48c0565b1ff9fe2d26d28f923c3ee2a49cfe3626 Mon Sep 17 00:00:00 2001 From: Bel LaPointe <153096461+breel-render@users.noreply.github.com> Date: Wed, 20 Dec 2023 23:45:23 -0500 Subject: [PATCH] oop --- 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 d1a1b70..6d4e808 100644 --- a/rust-whisper-baked-lib/src/lib.rs +++ b/rust-whisper-baked-lib/src/lib.rs @@ -15,7 +15,7 @@ pub fn wav( handler_fn: F ) where F: FnMut(Result) + Send + 'static { flags.model_path = None; - flags.model_buffer = Some(include_bytes!("../../models/ggml-distil-medium-v2.bin").to_vec()); + flags.model_buffer = Some(include_bytes!("../../models/ggml-distil-medium.en.bin").to_vec()); rust_whisper_lib::wav(flags.clone(), handler_fn, flags.wav.unwrap()); }