Fruit Fly Simulation
πͺ°
12
Simulate a fruit fly in your browser using WebGPU kernels
None defined yet.
transformers in dedicated releases!v4.49.0-SmolVLM-2 and v4.49.0-SigLIP-2.import { KokoroTTS } from "kokoro-js";
const tts = await KokoroTTS.from_pretrained(
"onnx-community/Kokoro-82M-ONNX",
{ dtype: "q8" }, // fp32, fp16, q8, q4, q4f16
);
const text = "Life is like a box of chocolates. You never know what you're gonna get.";
const audio = await tts.generate(text,
{ voice: "af_sky" }, // See `tts.list_voices()`
);
audio.save("audio.wav");npm i @huggingface/transformers.