Skip to content

Commit da9dce0

Browse files
committed
fix: correct model names
1 parent d50ae12 commit da9dce0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

app/constant.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,7 @@ export const DEFAULT_MODELS: ModelRecord[] = [
508508
},
509509
},
510510
{
511-
name: "Qwen2-0.5B-Instruct-q4f16-MLC",
511+
name: "Qwen2-0.5B-Instruct-q4f16_1-MLC",
512512
display_name: "Qwen",
513513
provider: "Alibaba",
514514
size: "0.5B",
@@ -965,7 +965,7 @@ export const DEFAULT_MODELS: ModelRecord[] = [
965965
},
966966
},
967967
{
968-
name: "Llama-3-70B-Instruct-q3f16-MLC",
968+
name: "Llama-3-70B-Instruct-q3f16_1-MLC",
969969
display_name: "Llama",
970970
provider: "Meta",
971971
size: "70B",

app/store/config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,9 +208,9 @@ export const useAppConfig = createPersistStore(
208208
}),
209209
{
210210
name: StoreKey.Config,
211-
version: 0.46,
211+
version: 0.47,
212212
migrate: (persistedState, version) => {
213-
if (version < 0.46) {
213+
if (version < 0.47) {
214214
return {
215215
...DEFAULT_CONFIG,
216216
...(persistedState as any),

0 commit comments

Comments
 (0)