← Back to models

Whisper Small Ggml

Speech Recognition

Whisper Small - Multilingual ASR (whisper.cpp/GGML runtime)

Integration

main.rs
use xybrid_sdk::{Xybrid, Envelope};

// Load the ASR model
let model = Xybrid::model("whisper-small-ggml").load()?;

// Transcribe audio to text
let result = model.run(&Envelope::audio(audio_bytes))?;

println!("{}", result.text.unwrap());