Skip to content

Commit 82cd978

Browse files
feat(nodes): clean up lora node names
I had named them wonkily and caused some user confusion.
1 parent 0b4c6f0 commit 82cd978

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

invokeai/app/invocations/flux_lora_loader.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ class FluxLoRALoaderOutput(BaseInvocationOutput):
2828

2929
@invocation(
3030
"flux_lora_loader",
31-
title="FLUX LoRA",
31+
title="Apply LoRA - FLUX",
3232
tags=["lora", "model", "flux"],
3333
category="model",
34-
version="1.2.0",
34+
version="1.2.1",
3535
classification=Classification.Prototype,
3636
)
3737
class FluxLoRALoaderInvocation(BaseInvocation):
@@ -107,10 +107,10 @@ def invoke(self, context: InvocationContext) -> FluxLoRALoaderOutput:
107107

108108
@invocation(
109109
"flux_lora_collection_loader",
110-
title="FLUX LoRA Collection Loader",
110+
title="Apply LoRA Collection - FLUX",
111111
tags=["lora", "model", "flux"],
112112
category="model",
113-
version="1.3.0",
113+
version="1.3.1",
114114
classification=Classification.Prototype,
115115
)
116116
class FLUXLoRACollectionLoader(BaseInvocation):

invokeai/app/invocations/model.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -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")
185185
class 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")
248248
class 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
)
263263
class 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
)
330330
class 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
)
410410
class SDXLLoRACollectionLoader(BaseInvocation):
411411
"""Applies a collection of SDXL LoRAs to the provided UNet and CLIP models."""

0 commit comments

Comments
 (0)