Skip to content

Commit b7b05c7

Browse files
committed
Add LocalChat.app to local apps
1 parent 0f0b1df commit b7b05c7

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

packages/tasks/src/local-apps.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -620,6 +620,14 @@ export const LOCAL_APPS = {
620620
displayOnModelPage: (model) => isLlamaCppGgufModel(model) || isAmdRyzenModel(model),
621621
snippet: snippetLemonade,
622622
},
623+
localchat: {
624+
prettyLabel: "LocalChat.app",
625+
docsUrl: "https://www.localchat.app",
626+
mainTask: "text-generation",
627+
macOSOnly: true,
628+
displayOnModelPage: isLlamaCppGgufModel,
629+
deeplink: (model) => new URL(`localchat://models/hf/llm/${model.id}`),
630+
},
623631
} satisfies Record<string, LocalApp>;
624632

625633
export type LocalAppKey = keyof typeof LOCAL_APPS;

0 commit comments

Comments
 (0)