Skip to content

Commit e69876a

Browse files
authored
JoyFusion: for now, require an explicit joyfusion tag on the model (huggingface#847)
1 parent 832db26 commit e69876a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/tasks/src/local-apps.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ export const LOCAL_APPS = {
239239
docsUrl: "https://joyfusion.app",
240240
mainTask: "text-to-image",
241241
macOSOnly: true,
242-
displayOnModelPage: (model) => model.tags.includes("coreml") && model.pipeline_tag === "text-to-image",
242+
displayOnModelPage: (model) => model.tags.includes("coreml") && model.tags.includes("joyfusion") && model.pipeline_tag === "text-to-image",
243243
deeplink: (model) => new URL(`https://joyfusion.app/import_from_hf?repo_id=${model.id}`),
244244
},
245245
invoke: {

0 commit comments

Comments
 (0)