smaller for dev

master
Bel LaPointe 2023-12-19 22:33:32 -05:00
parent 218816a9dc
commit c0bc9a9c76
1 changed files with 1 additions and 1 deletions

View File

@ -5,6 +5,6 @@ pub fn main<F>(
handler_fn: F
) where F: FnMut(Result<rust_whisper_lib::Whispered, String>) + 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);
}