This commit is contained in:
Bel LaPointe
2024-01-03 08:22:15 -07:00
parent ec47d8142a
commit 8b5c18e65e
3 changed files with 4 additions and 2 deletions

View File

@@ -25,7 +25,6 @@ pub fn wav_channel<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);
}