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