Spaces:
Running
Running
Commit
•
1fd4bf3
1
Parent(s):
e4c0241
fix suggested model name
Browse files- src/routes/+page.svelte +2 -2
src/routes/+page.svelte
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
import * as webllm from "@mlc-ai/web-llm";
|
5 |
import { onMount } from 'svelte';
|
6 |
|
7 |
-
let selectedModel = "smollm-360M-instruct-add-basics-
|
8 |
|
9 |
let engine: webllm.MLCEngineInterface;
|
10 |
let isLoading = false;
|
@@ -41,7 +41,7 @@
|
|
41 |
const appConfig: webllm.AppConfig = {
|
42 |
model_list: [{
|
43 |
model: `https://huggingface.co/reach-vb/smollm-360M-instruct-add-basics-q0f16-MLC`,
|
44 |
-
model_id: 'smollm-360M-instruct-add-basics-
|
45 |
model_lib: `${webllm.modelLibURLPrefix}${webllm.modelVersion}/SmolLM-360M-Instruct-q0f16-ctx2k_cs1k-webgpu.wasm`,
|
46 |
overrides: { context_window_size: 2048 },
|
47 |
},
|
|
|
4 |
import * as webllm from "@mlc-ai/web-llm";
|
5 |
import { onMount } from 'svelte';
|
6 |
|
7 |
+
let selectedModel = "smollm-360M-instruct-add-basics-q0f16-MLC";
|
8 |
|
9 |
let engine: webllm.MLCEngineInterface;
|
10 |
let isLoading = false;
|
|
|
41 |
const appConfig: webllm.AppConfig = {
|
42 |
model_list: [{
|
43 |
model: `https://huggingface.co/reach-vb/smollm-360M-instruct-add-basics-q0f16-MLC`,
|
44 |
+
model_id: 'smollm-360M-instruct-add-basics-q0f16-MLC',
|
45 |
model_lib: `${webllm.modelLibURLPrefix}${webllm.modelVersion}/SmolLM-360M-Instruct-q0f16-ctx2k_cs1k-webgpu.wasm`,
|
46 |
overrides: { context_window_size: 2048 },
|
47 |
},
|