nisten commited on
Commit
3bbd16b
·
verified ·
1 Parent(s): ac0bafc

Update src/worker.js

Browse files
Files changed (1) hide show
  1. src/worker.js +1 -1
src/worker.js CHANGED
@@ -77,7 +77,7 @@ const transcriber = await pipeline(
77
 
78
  await transcriber(new Float32Array(INPUT_SAMPLE_RATE)); // Compile shaders
79
 
80
- const llm_model_id = "https://huggingface.co/onnx-community/Qwen3-4B-ONNX";
81
  const tokenizer = await AutoTokenizer.from_pretrained(llm_model_id);
82
  const llm = await AutoModelForCausalLM.from_pretrained(llm_model_id, {
83
  dtype: "q4f16",
 
77
 
78
  await transcriber(new Float32Array(INPUT_SAMPLE_RATE)); // Compile shaders
79
 
80
+ const llm_model_id = "onnx-community/Qwen3-4B-ONNX";
81
  const tokenizer = await AutoTokenizer.from_pretrained(llm_model_id);
82
  const llm = await AutoModelForCausalLM.from_pretrained(llm_model_id, {
83
  dtype: "q4f16",