From 9479c1e4eb9c407df8d1be1dfb94491edaaf7a2a Mon Sep 17 00:00:00 2001 From: Alexis Rolland Date: Mon, 11 May 2026 10:23:44 +0800 Subject: [PATCH] Modify description of LoRA loaders --- nodes.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nodes.py b/nodes.py index cbca01c03..6cee47ee1 100644 --- a/nodes.py +++ b/nodes.py @@ -691,7 +691,7 @@ class LoraLoader: FUNCTION = "load_lora" CATEGORY = "loaders" - DESCRIPTION = "LoRAs are used to modify diffusion and CLIP models, altering the way in which latents are denoised such as applying styles. Multiple LoRA nodes can be linked together." + DESCRIPTION = "This LoRA loader is used to modify both diffusion and CLIP models, altering the way in which latents are denoised such as applying styles. Multiple LoRA nodes can be linked together." SEARCH_ALIASES = ["lora", "load lora", "apply lora", "lora loader", "lora model"] def load_lora(self, model, clip, lora_name, strength_model, strength_clip): @@ -721,6 +721,7 @@ class LoraLoaderModelOnly(LoraLoader): "strength_model": ("FLOAT", {"default": 1.0, "min": -100.0, "max": 100.0, "step": 0.01}), }} RETURN_TYPES = ("MODEL",) + DESCRIPTION = "This LoRAs loader is used to modify the diffusion model, altering the way in which latents are denoised such as applying styles. Multiple LoRA nodes can be linked together." FUNCTION = "load_lora_model_only" def load_lora_model_only(self, model, lora_name, strength_model):