The model is now added to WebAI.js. Run it in your browser with no code required.

#5
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: "tsl-200-600m"
});

await webai.init({
  mode: "webai",
  precision: "q8",
  device: "wasm"
});

const generation = await webai.generate({
  userInput: {
    texts: [
      "Hello, how are you?",
      "Artificial Intelligence is transforming the world."
    ]
  },
  modelConfig: {
    src_lang: "eng_Latn",
    tgt_lang: "spa_Latn"
  },
  generateConfig: {}
});

🔬 Try Whisper Large V3 Turbo Instantly (No Code Required)

You can benchmark and test the model directly here:
https://www.webai-js.com/models/tsl-200-600m/playground

image


📘 Full API Reference

Detailed parameter explanations can be found here:
https://www.webai-js.com/models/tsl-200-600m/api-reference/v1/class-api/methods/webai-generate

image


🧡 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

Sign up or log in to comment