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