Skip to content

Commit 5b85b8e

Browse files
pbenduskrampstudio
andauthored
Add Sanctum local app to "Use this model" list (#702)
Hi HuggingFace team! Sanctum is a local encrypted application for running open-source LLMs in just a few clicks. It has a direct integration with HuggingFace GGUF models, so it'd be great to have it under the list of "Use this model" local apps. Sanctum is free and available for download on MacOS & Windows here: [https://sanctum.ai](https://sanctum.ai) We've also implemented support for deep links, here's a quick video on how it works on MacOS (Windows is also supported). Feel free to use this link to try it out: `sanctum://open_from_hf?model=SanctumAI/Meta-Llama-3-8B-Instruct-GGUF` https://github.com/huggingface/huggingface.js/assets/32494918/9f9acc09-0396-48b7-ba8b-9945c6dd547c Also is there anything we could do for Sanctum to be available in the "Use this model" app list by default? Thanks in advance! Co-authored-by: Bertrand CHEVRIER <bertrand@huggingface.co>
1 parent 8b29df8 commit 5b85b8e

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

packages/tasks/src/local-apps.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,13 @@ export const LOCAL_APPS = {
103103
displayOnModelPage: isGgufModel,
104104
deeplink: (model) => new URL(`https://backyard.ai/hf/model/${model.id}`),
105105
},
106+
sanctum: {
107+
prettyLabel: "Sanctum",
108+
docsUrl: "https://sanctum.ai",
109+
mainTask: "text-generation",
110+
displayOnModelPage: isGgufModel,
111+
deeplink: (model) => new URL(`sanctum://open_from_hf?model=${model.id}`),
112+
},
106113
drawthings: {
107114
prettyLabel: "Draw Things",
108115
docsUrl: "https://drawthings.ai",

0 commit comments

Comments
 (0)