Skip to content

Commit 6b9b1bf

Browse files
chainchompaenzostvspcuenca
authored
Add Invoke Local App (#757)
Hi HuggingFace team! I'm looking to add [Invoke](https://github.com/invoke-ai/Invoke) to the list of local apps for running text-to-image models. Let me know if I need to provide anything else! Co-authored-by: enzo <eesteves@hotmail.fr> Co-authored-by: Pedro Cuenca <pedro@huggingface.co>
1 parent fd1d98a commit 6b9b1bf

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
@@ -234,6 +234,13 @@ export const LOCAL_APPS = {
234234
displayOnModelPage: (model) => model.library_name === "diffusers" && model.pipeline_tag === "text-to-image",
235235
deeplink: (model) => new URL(`diffusionbee://open_from_hf?model=${model.id}`),
236236
},
237+
invoke: {
238+
prettyLabel: "Invoke",
239+
docsUrl: "https://github.com/invoke-ai/InvokeAI",
240+
mainTask: "text-to-image",
241+
displayOnModelPage: (model) => model.library_name === "diffusers" && model.pipeline_tag === "text-to-image",
242+
deeplink: (model) => new URL(`https://models.invoke.ai/huggingface/${model.id}`),
243+
},
237244
} satisfies Record<string, LocalApp>;
238245

239246
export type LocalAppKey = keyof typeof LOCAL_APPS;

0 commit comments

Comments
 (0)