@@ -181,7 +181,7 @@ class LoRALoaderOutput(BaseInvocationOutput):
181181 clip : Optional [CLIPField ] = OutputField (default = None , description = FieldDescriptions .clip , title = "CLIP" )
182182
183183
184- @invocation ("lora_loader" , title = "LoRA" , tags = ["model" ], category = "model" , version = "1.0.3 " )
184+ @invocation ("lora_loader" , title = "Apply LoRA - SD1.5 " , tags = ["model" ], category = "model" , version = "1.0.4 " )
185185class LoRALoaderInvocation (BaseInvocation ):
186186 """Apply selected lora to unet and text_encoder."""
187187
@@ -244,7 +244,7 @@ class LoRASelectorOutput(BaseInvocationOutput):
244244 lora : LoRAField = OutputField (description = "LoRA model and weight" , title = "LoRA" )
245245
246246
247- @invocation ("lora_selector" , title = "LoRA Model - SD1.5 " , tags = ["model" ], category = "model" , version = "1.0.2 " )
247+ @invocation ("lora_selector" , title = "Select LoRA " , tags = ["model" ], category = "model" , version = "1.0.3 " )
248248class LoRASelectorInvocation (BaseInvocation ):
249249 """Selects a LoRA model and weight."""
250250
@@ -258,7 +258,7 @@ def invoke(self, context: InvocationContext) -> LoRASelectorOutput:
258258
259259
260260@invocation (
261- "lora_collection_loader" , title = "LoRA Collection - SD1.5" , tags = ["model" ], category = "model" , version = "1.1.1 "
261+ "lora_collection_loader" , title = "Apply LoRA Collection - SD1.5" , tags = ["model" ], category = "model" , version = "1.1.2 "
262262)
263263class LoRACollectionLoader (BaseInvocation ):
264264 """Applies a collection of LoRAs to the provided UNet and CLIP models."""
@@ -322,10 +322,10 @@ class SDXLLoRALoaderOutput(BaseInvocationOutput):
322322
323323@invocation (
324324 "sdxl_lora_loader" ,
325- title = "LoRA Model - SDXL" ,
325+ title = "Apply LoRA - SDXL" ,
326326 tags = ["lora" , "model" ],
327327 category = "model" ,
328- version = "1.0.4 " ,
328+ version = "1.0.5 " ,
329329)
330330class SDXLLoRALoaderInvocation (BaseInvocation ):
331331 """Apply selected lora to unet and text_encoder."""
@@ -402,10 +402,10 @@ def invoke(self, context: InvocationContext) -> SDXLLoRALoaderOutput:
402402
403403@invocation (
404404 "sdxl_lora_collection_loader" ,
405- title = "LoRA Collection - SDXL" ,
405+ title = "Apply LoRA Collection - SDXL" ,
406406 tags = ["model" ],
407407 category = "model" ,
408- version = "1.1.1 " ,
408+ version = "1.1.2 " ,
409409)
410410class SDXLLoRACollectionLoader (BaseInvocation ):
411411 """Applies a collection of SDXL LoRAs to the provided UNet and CLIP models."""
0 commit comments