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); }