We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f0b1df commit b7b05c7Copy full SHA for b7b05c7
packages/tasks/src/local-apps.ts
@@ -620,6 +620,14 @@ export const LOCAL_APPS = {
620
displayOnModelPage: (model) => isLlamaCppGgufModel(model) || isAmdRyzenModel(model),
621
snippet: snippetLemonade,
622
},
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
+ },
631
} satisfies Record<string, LocalApp>;
632
633
export type LocalAppKey = keyof typeof LOCAL_APPS;
0 commit comments