From 0033912e73cdfaa8a76798cef32dcee0047e677d Mon Sep 17 00:00:00 2001 From: nidum-ai Date: Fri, 20 Dec 2024 21:02:14 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=97=20=20Use=20Hugging=20Face=20Locall?= =?UTF-8?q?y=20with=20Nidum=20AI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Nidum AI is a versatile local AI platform that empowers users to explore and deploy AI on their own terms. Supporting macOS, Windows, iOS, and Android, Nidum AI enables seamless integration of Hugging Face models, providing a flexible and accessible AI ecosystem. Deep link functionality has been implemented for direct model access: `nidum://models/huggingface/nidum/Nidum-Llama-3.2-3B-Uncensored-GGUF`. Get all platform download links at https://nidum.ai/. Experience AI built around you—flexible, sharable, and entirely in your control. --- packages/tasks/src/local-apps.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/packages/tasks/src/local-apps.ts b/packages/tasks/src/local-apps.ts index 0f2695c13..491da3f41 100644 --- a/packages/tasks/src/local-apps.ts +++ b/packages/tasks/src/local-apps.ts @@ -333,6 +333,13 @@ export const LOCAL_APPS = { displayOnModelPage: isLlamaCppGgufModel, deeplink: (model) => new URL(`jan://models/huggingface/${model.id}`), }, + nidum: { + prettyLabel: "Nidum", + docsUrl: "https://nidum.ai", + mainTask: "text-generation", + displayOnModelPage: isLlamaCppGgufModel, + deeplink: (model) => new URL(`nidum://models/huggingface/${model.id}`), + }, backyard: { prettyLabel: "Backyard AI", docsUrl: "https://backyard.ai",