ClybAdaptiveLoraLoaderModelOnly
The same 20-LoRA stacker, without CLIP
- model
- MODEL
ClybAdaptiveLoraLoaderModelOnly is the trim variant of the pack's LoRA stacker. Same adaptive UI, same up-to-20 slots, same clone-once-and-merge-all trick - but the CLIP input is gone, and the CLIP strength is forced to 0.0 for every slot. Only the diffusion-model patches get applied. It returns a single MODEL, nothing else.
Why would you want that? Mostly for the workflows where you don't have a CLIP to patch, or where patching it is actively wrong:
- Unconditional / low-guidance pipelines. At CFG 1 many modern flow models don't even compute the unconditional pass, and there's no text encoder in the loop to modify.
- Flows with a separate text encoder. If your CLIP (or T5) is wired in through its own path, you don't want a LoRA loader stomping on it.
- Model-only chains like img2img or refinement passes where you want a stylistic LoRA on the model and nothing touching conditioning.
The LoRAs still land in your models/loras folder, the strength_model_N widgets still go negative if you want to subtract a LoRA's effect, and the same dynamic UI applies: fill slot 1 with a real LoRA and slot 2's widgets appear. A slot with strength_model = 0 is skipped.
Wiring and install
Output is the patched MODEL, ready for your sampler:
model → ClybAdaptiveLoraLoaderModelOnly → KSampler(model=…)
Installation is identical to the rest of the pack - no dependencies:
cd /path/to/ComfyUI/custom_nodes
git clone https://github.com/Clybius/ComfyUI-ClybsChromaNodes.git
# restart ComfyUI
Or grab it through ComfyUI Manager by searching "ComfyUI-ClybsChromaNodes".
The honest take
If you're doing normal text-to-image with a prompt, use the full ClybAdaptiveLoraLoader instead - it's a strict superset, and forgetting to load a clip-only LoRA patch is an easy silent mistake to make. This variant earns its keep in exactly the niche it names: model-only sampling. Same EXPERIMENTAL flag as the parent, so keep the pack updated when ComfyUI bumps core.
Inputs (41)
| Name | Type | Default | Description |
|---|---|---|---|
| model | MODEL | — | |
| lora_name_1 | COMBO | 1 options: none | |
| strength_model_1 | FLOAT | 1.00-100–100 | — |
| lora_name_2opt | COMBO | none | 1 options: none |
| strength_model_2opt | FLOAT | 1.00-100–100 | — |
| lora_name_3opt | COMBO | none | 1 options: none |
| strength_model_3opt | FLOAT | 1.00-100–100 | — |
| lora_name_4opt | COMBO | none | 1 options: none |
| strength_model_4opt | FLOAT | 1.00-100–100 | — |
| lora_name_5opt | COMBO | none | 1 options: none |
| strength_model_5opt | FLOAT | 1.00-100–100 | — |
| lora_name_6opt | COMBO | none | 1 options: none |
| strength_model_6opt | FLOAT | 1.00-100–100 | — |
| lora_name_7opt | COMBO | none | 1 options: none |
| strength_model_7opt | FLOAT | 1.00-100–100 | — |
| lora_name_8opt | COMBO | none | 1 options: none |
| strength_model_8opt | FLOAT | 1.00-100–100 | — |
| lora_name_9opt | COMBO | none | 1 options: none |
| strength_model_9opt | FLOAT | 1.00-100–100 | — |
| lora_name_10opt | COMBO | none | 1 options: none |
| strength_model_10opt | FLOAT | 1.00-100–100 | — |
| lora_name_11opt | COMBO | none | 1 options: none |
| strength_model_11opt | FLOAT | 1.00-100–100 | — |
| lora_name_12opt | COMBO | none | 1 options: none |
| strength_model_12opt | FLOAT | 1.00-100–100 | — |
| lora_name_13opt | COMBO | none | 1 options: none |
| strength_model_13opt | FLOAT | 1.00-100–100 | — |
| lora_name_14opt | COMBO | none | 1 options: none |
| strength_model_14opt | FLOAT | 1.00-100–100 | — |
| lora_name_15opt | COMBO | none | 1 options: none |
| strength_model_15opt | FLOAT | 1.00-100–100 | — |
| lora_name_16opt | COMBO | none | 1 options: none |
| strength_model_16opt | FLOAT | 1.00-100–100 | — |
| lora_name_17opt | COMBO | none | 1 options: none |
| strength_model_17opt | FLOAT | 1.00-100–100 | — |
| lora_name_18opt | COMBO | none | 1 options: none |
| strength_model_18opt | FLOAT | 1.00-100–100 | — |
| lora_name_19opt | COMBO | none | 1 options: none |
| strength_model_19opt | FLOAT | 1.00-100–100 | — |
| lora_name_20opt | COMBO | none | 1 options: none |
| strength_model_20opt | FLOAT | 1.00-100–100 | — |
Outputs (1)
| Name | Type | Description |
|---|---|---|
| MODEL | MODEL | The modified diffusion model. |