From 395b472ea27fcab962855a1ae340fa127642b071 Mon Sep 17 00:00:00 2001 From: Britt Date: Wed, 12 Feb 2025 14:16:23 -0500 Subject: [PATCH] Add cnvrs to Local apps! - available for iOS, iPadOS, macOS, and visionOS - run local GGUF models & hosted models, via chat completions-compatible APIs - files chat for text-heavy PDFs & files with semantic search - characters (custom system prompts & sampler settings) - saved chat history & continue past chats - in beta now on testflight https://cnvrs.ai --- packages/tasks/src/local-apps.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/packages/tasks/src/local-apps.ts b/packages/tasks/src/local-apps.ts index 1882fe9a8..cf3ef3861 100644 --- a/packages/tasks/src/local-apps.ts +++ b/packages/tasks/src/local-apps.ts @@ -381,6 +381,14 @@ export const LOCAL_APPS = { displayOnModelPage: isLlamaCppGgufModel, deeplink: (model) => new URL(`recursechat://new-hf-gguf-model?hf-model-id=${model.id}`), }, + cnvrs: { + prettyLabel: "cnvrs", + docsUrl: "https://cnvrs.ai", + mainTask: "text-generation", + macOSOnly: false, + displayOnModelPage: isLlamaCppGgufModel, + deeplink: (model) => new URL(`cnvrsai:///models/search/hf?id=${model.id}`), + }, drawthings: { prettyLabel: "Draw Things", docsUrl: "https://drawthings.ai",