EasyUse/Utilgenerated
Show Loader Settings Names(showLoaderSettingsNames)
Show Loader Settings Names node from ComfyUI-Easy-Use.
show Loader Settings Names
pipe
ckpt_name
vae_name
lora_name
Easy Use
Description
The Show Loader Settings Names node is a utility for inspecting the loader settings carried by an EasyUse PIPE_LINE. It takes a pipeline object and returns the names of the selected loader components as three strings, making it easy to display or forward the active model names to text nodes, UI previews, debug outputs, or downstream logic.
This node is read-only: it does not modify the pipeline or affect the data flowing through it.
Inputs
Required
- pipe (
PIPE_LINE): The EasyUse pipeline object produced by upstream loader/setting nodes. It should contain the loader state — including the selected checkpoint, LoRA, and VAE names — assembled by the nodes in the workflow.
Outputs
The node returns three STRING outputs, in positional order:
- Checkpoint name — the selected checkpoint model name.
- LoRA name — the selected LoRA model name.
- VAE name — the selected VAE model name.
If any of these settings is not present in the supplied pipeline, the corresponding output will be an empty string.
Usage Notes
- Feed the node the same
PIPE_LINEused by your loader chain so it reflects the current loader settings. - This is primarily a debugging/display node: connect the string outputs to a text or preview node to quickly see which models are active without inspecting the workflow graph manually.
- Because the node does not alter the pipeline, it can be inserted into an existing pipe path without changing the data passed to subsequent nodes.
Comments
Sign in with GitHub to join the discussion.