File tree 1 file changed +9
-0
lines changed
1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -323,6 +323,15 @@ export const LOCAL_APPS = {
323
323
displayOnModelPage : ( model ) => model . library_name === "diffusers" && model . pipeline_tag === "text-to-image" ,
324
324
deeplink : ( model ) => new URL ( `https://models.invoke.ai/huggingface/${ model . id } ` ) ,
325
325
} ,
326
+ comfyui : {
327
+ prettyLabel : "ComfyUI" ,
328
+ docsUrl : "https://docs.comfy.org/get_started/introduction" ,
329
+ mainTask : "text-to-image" ,
330
+ displayOnModelPage : ( model : ModelData ) =>
331
+ ( isGgufModel ( model ) || ( isTransformersModel ( model ) && model . tags . includes ( "safetensors" ) ) ) &&
332
+ model . tags . includes ( "text-to-image" ) ,
333
+ deeplink : ( model ) => new URL ( `https://huggingface.co/${ model . id } ` ) ,
334
+ } ,
326
335
} satisfies Record < string , LocalApp > ;
327
336
328
337
export type LocalAppKey = keyof typeof LOCAL_APPS ;
You can’t perform that action at this time.
0 commit comments