I would like to request a small usability improvement for UnetLoaderGGUF.
Currently, the node lets the user select unet_name, but it only outputs MODEL.
For workflows that save images with metadata, especially JPEG/WebP metadata for Civitai-style upload forms, it is useful to pass the selected GGUF model name to save nodes automatically.
Use cases:
- Save the selected GGUF model name into image metadata
- Use the model name in filenames or output folders
- Avoid manually typing the model name every time the model is changed
- Keep metadata synchronized with the actual loaded model
Suggested change:
RETURN_TYPES = ("MODEL", "STRING")
RETURN_NAMES = ("model", "modelname")
I would like to request a small usability improvement for
UnetLoaderGGUF.Currently, the node lets the user select
unet_name, but it only outputsMODEL.For workflows that save images with metadata, especially JPEG/WebP metadata for Civitai-style upload forms, it is useful to pass the selected GGUF model name to save nodes automatically.
Use cases:
Suggested change:
RETURN_TYPES = ("MODEL", "STRING")
RETURN_NAMES = ("model", "modelname")