From 19b0a4b385dc12205a3be7b0aa9489d59b1445cc Mon Sep 17 00:00:00 2001 From: Bel LaPointe <153096461+breel-render@users.noreply.github.com> Date: Thu, 21 Dec 2023 15:09:37 -0500 Subject: [PATCH] baked channel uses tiny --- 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 6d4e808..5334f05 100644 --- a/rust-whisper-baked-lib/src/lib.rs +++ b/rust-whisper-baked-lib/src/lib.rs @@ -6,7 +6,7 @@ pub fn channel( stream: std::sync::mpsc::Receiver>, ) where F: FnMut(Result) + Send + 'static { flags.model_path = None; - flags.model_buffer = Some(include_bytes!("../../models/ggml-small.en.bin").to_vec()); + flags.model_buffer = Some(include_bytes!("../../models/ggml-tiny.en.bin").to_vec()); rust_whisper_lib::channel(flags.clone(), handler_fn, stream); }