Skip to content

Commit

Permalink
feat: reorder models
Browse files Browse the repository at this point in the history
  • Loading branch information
Neet-Nestor committed Sep 29, 2024
1 parent e148fc5 commit fd3bfcb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions app/constant.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@ Latex block format: $$e=mc^2$$
export const DEFAULT_MODELS: ModelRecord[] = [
// Phi-3.5 Vision
{
name: "Phi-3.5-vision-instruct-q4f16_1-MLC",
name: "Phi-3.5-vision-instruct-q4f32_1-MLC",
display_name: "Phi",
provider: "Microsoft",
quantization: "q4f16",
quantization: "q4f32",
family: "Phi 3.5 Vision",
recommended_config: {
temperature: 1,
Expand All @@ -80,10 +80,10 @@ export const DEFAULT_MODELS: ModelRecord[] = [
},
},
{
name: "Phi-3.5-vision-instruct-q4f32_1-MLC",
name: "Phi-3.5-vision-instruct-q4f16_1-MLC",
display_name: "Phi",
provider: "Microsoft",
quantization: "q4f32",
quantization: "q4f16",
family: "Phi 3.5 Vision",
recommended_config: {
temperature: 1,
Expand Down
4 changes: 2 additions & 2 deletions app/store/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -216,9 +216,9 @@ export const useAppConfig = createPersistStore(
}),
{
name: StoreKey.Config,
version: 0.55,
version: 0.56,
migrate: (persistedState, version) => {
if (version < 0.55) {
if (version < 0.56) {
return {
...DEFAULT_CONFIG,
...(persistedState as any),
Expand Down

0 comments on commit fd3bfcb

Please sign in to comment.