mirror of
https://github.com/huggingface/candle.git
synced 2025-06-16 02:38:10 +00:00

* Move the whisper example. * More renaming. * Add llama2 as a new wasm example. * Live generation. * More of the llama wasm example. * Formatting.
7 lines
176 B
JavaScript
7 lines
176 B
JavaScript
import init, { run_app } from './pkg/candle_wasm_example_whisper.js';
|
|
async function main() {
|
|
await init('/pkg/candle_wasm_example_whisper_bg.wasm');
|
|
run_app();
|
|
}
|
|
main()
|