← Back to models
Whisper Base En Ggml
Speech RecognitionWhisper Base English - English-only ASR (whisper.cpp/GGML runtime)
Integration
main.rs
use xybrid_sdk::{Xybrid, Envelope};
// Load the ASR model
let model = Xybrid::model("whisper-base-en-ggml").load()?;
// Transcribe audio to text
let result = model.run(&Envelope::audio(audio_bytes))?;
println!("{}", result.text.unwrap());