From de569ace3766358abbb583e1cfa3e9f19a3d78d6 Mon Sep 17 00:00:00 2001 From: ozbayb <17261091+ozbayb@users.noreply.github.com> Date: Sat, 16 May 2026 00:08:27 -0600 Subject: [PATCH] Add description to Get IC-LoRA Parameters node --- comfy_extras/nodes_lt.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/comfy_extras/nodes_lt.py b/comfy_extras/nodes_lt.py index 4451d0a2a..fdae458e5 100644 --- a/comfy_extras/nodes_lt.py +++ b/comfy_extras/nodes_lt.py @@ -23,6 +23,8 @@ class GetICLoRAParameters(io.ComfyNode): return io.Schema( node_id="GetICLoRAParameters", display_name="Get IC-LoRA Parameters", + description="Extracts IC-LoRA parameters from the safetensors metadata of a LoRA-loaded " + "model and outputs them for LTXVAddGuide (eg. reference_downscale_factor).", category="conditioning/video_models", search_aliases=["ic-lora", "ic lora", "iclora", "downscale factor", "reference downscale"], inputs=[ @@ -37,7 +39,7 @@ class GetICLoRAParameters(io.ComfyNode): "iclora_parameters", tooltip="IC-LoRA parameters extracted from the LoRA metadata " "(eg. reference_downscale_factor). Connect to LTXVAddGuide " - "if the LoRA requires special handling of the guides." + "if the LoRA requires special handling of the guides.", ), ], )