@@ -69,6 +69,7 @@ def INPUT_TYPES(s) -> InputTypeDict:
6969 FUNCTION = "encode"
7070
7171 CATEGORY = "conditioning"
72+ ESSENTIALS_CATEGORY = "Basic"
7273 DESCRIPTION = "Encodes a text prompt using a CLIP model into an embedding that can be used to guide the diffusion model towards generating specific images."
7374 SEARCH_ALIASES = ["text" , "prompt" , "text prompt" , "positive prompt" , "negative prompt" , "encode text" , "text encoder" , "encode prompt" ]
7475
@@ -667,6 +668,8 @@ def set_last_layer(self, clip, stop_at_clip_layer):
667668 return (clip ,)
668669
669670class LoraLoader :
671+ ESSENTIALS_CATEGORY = "Image Generation"
672+
670673 def __init__ (self ):
671674 self .loaded_lora = None
672675
@@ -1648,6 +1651,7 @@ def INPUT_TYPES(s):
16481651 OUTPUT_NODE = True
16491652
16501653 CATEGORY = "image"
1654+ ESSENTIALS_CATEGORY = "Basic"
16511655 DESCRIPTION = "Saves the input images to your ComfyUI output directory."
16521656 SEARCH_ALIASES = ["save" , "save image" , "export image" , "output image" , "write image" , "download" ]
16531657
@@ -1706,6 +1710,7 @@ def INPUT_TYPES(s):
17061710 }
17071711
17081712 CATEGORY = "image"
1713+ ESSENTIALS_CATEGORY = "Basic"
17091714 SEARCH_ALIASES = ["load image" , "open image" , "import image" , "image input" , "upload image" , "read image" , "image loader" ]
17101715
17111716 RETURN_TYPES = ("IMAGE" , "MASK" )
@@ -1863,6 +1868,7 @@ def INPUT_TYPES(s):
18631868 FUNCTION = "upscale"
18641869
18651870 CATEGORY = "image/upscaling"
1871+ ESSENTIALS_CATEGORY = "Image Tools"
18661872 SEARCH_ALIASES = ["resize" , "resize image" , "scale image" , "image resize" , "zoom" , "zoom in" , "change size" ]
18671873
18681874 def upscale (self , image , upscale_method , width , height , crop ):
@@ -1902,6 +1908,7 @@ def upscale(self, image, upscale_method, scale_by):
19021908
19031909class ImageInvert :
19041910 SEARCH_ALIASES = ["reverse colors" ]
1911+ ESSENTIALS_CATEGORY = "Image Tools"
19051912
19061913 @classmethod
19071914 def INPUT_TYPES (s ):
@@ -1918,6 +1925,7 @@ def invert(self, image):
19181925
19191926class ImageBatch :
19201927 SEARCH_ALIASES = ["combine images" , "merge images" , "stack images" ]
1928+ ESSENTIALS_CATEGORY = "Image Tools"
19211929
19221930 @classmethod
19231931 def INPUT_TYPES (s ):
0 commit comments