error 3437340512

#1
by TryTrT - opened

When loading the model using SvelteKit:

onMount(async () => {
  try {
    generator = await pipeline(
      "text-generation",
      "onnx-community/gemma-3-1b-it-ONNX-GQA",
      { 
        dtype: "q4",
        progress_callback: updateFileStatuses
      }
    );
    console.log("Model loaded");
    modelLoaded.set(true);
  } catch (error) {
    console.error("Model loading error:", error);
  }
});

An error appears in the console with the message 3437340512.
How can I fix this?

Your need to confirm your account before you can post a new comment.

Sign up or log in to comment