The model is now added to WebAI.js. Run it in your browser with no code required.
#82
by
AxolsWebAI
- opened
Hi there,
We've packaged this model inside our open-source library WebAI.js, letting you run it directly in the browser with just a few lines of code—no backend hosting required:
import { WebAI } from '@axols/webai-js';
const webai = await WebAI.create({
modelId: "whisper-large-v3-turbo"
});
await webai.init({
mode: "webai",
precision: "q4f16",
device: "webgpu"
});
const generation = await webai.generate({
userInput: {
audio_blob_url: "blob:https://www.webai-js.com/d76ae737-1d1e-491c-98b4-3e1afffb982f"
},
modelConfig: {
language: "en",
return_timestamps: true,
condition_on_prev_tokens: true
},
generateConfig: {
chunk_length_s: 30
}
});
🔬 Try Whisper Large V3 Turbo Instantly (No Code Required)
You can benchmark and test the model directly here:
https://www.webai-js.com/models/whisper-large-v3-turbo/playground
📘 Full API Reference
Detailed parameter explanations can be found here:
https://www.webai-js.com/models/whisper-large-v3-turbo/api-reference/v1/class-api/methods/webai-generate
🧡 Fully Open Source
WebAI.js is completely open source and free to use.
Star or contribute on GitHub:
https://github.com/axolsai/webai-js
Thank

