From c0bc9a9c761b9ee40af79c9e74f4a2924ed8d84c Mon Sep 17 00:00:00 2001 From: Bel LaPointe <153096461+breel-render@users.noreply.github.com> Date: Tue, 19 Dec 2023 22:33:32 -0500 Subject: [PATCH] smaller for dev --- 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 a150bd9..406e889 100644 --- a/rust-whisper-baked-lib/src/lib.rs +++ b/rust-whisper-baked-lib/src/lib.rs @@ -5,6 +5,6 @@ pub fn main( handler_fn: F ) 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::main(flags, handler_fn); }