From 9e09bd4aa50b7ad3f84ea65282b1b858e83fb07a Mon Sep 17 00:00:00 2001 From: chainchompa Date: Mon, 17 Jun 2024 10:58:22 -0500 Subject: [PATCH] Add Invoke Local App --- 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 24aa971671..34a2f83f4b 100644 --- a/packages/tasks/src/local-apps.ts +++ b/packages/tasks/src/local-apps.ts @@ -177,6 +177,13 @@ export const LOCAL_APPS = { displayOnModelPage: (model) => model.library_name === "diffusers" && model.pipeline_tag === "text-to-image", deeplink: (model) => new URL(`diffusionbee://open_from_hf?model=${model.id}`), }, + invoke: { + prettyLabel: "Invoke", + docsUrl: "https://github.com/invoke-ai/InvokeAI", + mainTask: "text-to-image", + displayOnModelPage: (model) => model.library_name === "diffusers" && model.pipeline_tag === "text-to-image", + deeplink: (model) => new URL(`https://models.invoke.ai/huggingface/${model.id}`), + }, } satisfies Record; export type LocalAppKey = keyof typeof LOCAL_APPS;