From d94cbd69276d33a60cf4dcb5e882edb05d39143d Mon Sep 17 00:00:00 2001 From: Bel LaPointe <153096461+breel-render@users.noreply.github.com> Date: Tue, 2 Jan 2024 16:30:07 -0700 Subject: [PATCH] baked-lib wav_channel to base --- 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 988a2d2..29b03cc 100644 --- a/rust-whisper-baked-lib/src/lib.rs +++ b/rust-whisper-baked-lib/src/lib.rs @@ -24,7 +24,7 @@ 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-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); }