@@ -115,12 +115,14 @@ class DenoiseLatentsInvocation(BaseInvocation):
115115 noise : Optional [LatentsField ] = InputField (description = FieldDescriptions .noise , input = Input .Connection )
116116 steps : int = InputField (default = 10 , gt = 0 , description = FieldDescriptions .steps )
117117 cfg_scale : Union [float , List [float ]] = InputField (
118- default = 7.5 , ge = 1 , description = FieldDescriptions .cfg_scale , ui_type = UIType .Float
118+ default = 7.5 , ge = 1 , description = FieldDescriptions .cfg_scale , ui_type = UIType .Float , title = "CFG Scale"
119119 )
120120 denoising_start : float = InputField (default = 0.0 , ge = 0 , le = 1 , description = FieldDescriptions .denoising_start )
121121 denoising_end : float = InputField (default = 1.0 , ge = 0 , le = 1 , description = FieldDescriptions .denoising_end )
122- scheduler : SAMPLER_NAME_VALUES = InputField (default = "euler" , description = FieldDescriptions .scheduler )
123- unet : UNetField = InputField (description = FieldDescriptions .unet , input = Input .Connection )
122+ scheduler : SAMPLER_NAME_VALUES = InputField (
123+ default = "euler" , description = FieldDescriptions .scheduler , ui_type = UIType .Scheduler
124+ )
125+ unet : UNetField = InputField (description = FieldDescriptions .unet , input = Input .Connection , title = "UNet" )
124126 control : Union [ControlField , list [ControlField ]] = InputField (
125127 default = None , description = FieldDescriptions .control , input = Input .Connection
126128 )
@@ -454,7 +456,7 @@ def _lora_loader():
454456
455457
456458@title ("Latents to Image" )
457- @tags ("latents" , "image" , "vae" )
459+ @tags ("latents" , "image" , "vae" , "l2i" )
458460class LatentsToImageInvocation (BaseInvocation ):
459461 """Generates an image from latents."""
460462
@@ -642,7 +644,7 @@ def invoke(self, context: InvocationContext) -> LatentsOutput:
642644
643645
644646@title ("Image to Latents" )
645- @tags ("latents" , "image" , "vae" )
647+ @tags ("latents" , "image" , "vae" , "i2l" )
646648class ImageToLatentsInvocation (BaseInvocation ):
647649 """Encodes an image into latents."""
648650
0 commit comments