Files
candle/candle-wasm-example/main.js
Laurent Mazare d1f6fad84a Whisper example in wasm. (#169)
* Whisper example in wasm.

* Load the model.

* Get the whisper demo to work (though slowly).

* Polish the UI a bit.

* Minor tweak.

* More UI.

* Add the progress bar.
2023-07-14 19:33:36 +01:00

7 lines
160 B
JavaScript

import init, { run_app } from './pkg/candle_wasm_example.js';
async function main() {
await init('/pkg/candle_wasm_example_bg.wasm');
run_app();
}
main()