baked-lib wav_channel to base

master 0.2.5
Bel LaPointe 2024-01-02 16:30:07 -07:00
parent 7a5db3b2ac
commit d94cbd6927
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ pub fn wav_channel<F>(
handler_fn: F
) where F: FnMut(Result<rust_whisper_lib::Transcribed, String>) + Send + 'static {
flags.model_path = None;
flags.model_buffer = Some(include_bytes!("../../models/ggml-distil-medium.en.bin").to_vec());
flags.model_buffer = Some(include_bytes!("../../models/ggml-base.en.bin").to_vec());
rust_whisper_lib::wav_channel(flags, handler_fn);
}