From af1171b228d2ad37182a15a9bc867b094dad919e Mon Sep 17 00:00:00 2001 From: Bel LaPointe <153096461+breel-render@users.noreply.github.com> Date: Wed, 20 Dec 2023 23:43:38 -0500 Subject: [PATCH] and change model --- 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 607ec4e..d1a1b70 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-large-v2.bin").to_vec()); + flags.model_buffer = Some(include_bytes!("../../models/ggml-distil-medium-v2.bin").to_vec()); rust_whisper_lib::wav(flags.clone(), handler_fn, flags.wav.unwrap()); }