EasyLoader (A1111)(a1111Loader)
The EasyLoader (A1111) node (a1111Loader) is a convenience loader from ComfyUI-Easy-Use that combines checkpoint loading, VAE selection, LoRA application, promp...
a1111 Loader
The EasyLoader (A1111) node (a1111Loader) is a convenience loader from ComfyUI-Easy-Use that combines checkpoint loading, VAE selection, LoRA application, prompt input, latent sizing, and batch configuration into a single workflow node. It belongs to the EasyUse/Loaders category and returns a ready-to-use pipeline object as well as the composed model and VAE.
Description
This node is designed for A1111-style workflows. It lets you select a checkpoint and VAE, apply a LoRA with separate model and CLIP strengths, set a CLIP skip value, choose a latent resolution, enter positive and negative prompts, and control batch size — all from one loader. It also accepts optional LoRA and ControlNet stacks, and includes an A1111 prompt-style flag for workflows that use Automatic1111-style prompt syntax.
Inputs
| Field | Type | Default | Range | Description |
|---|---|---|---|---|
ckpt_name | COMBO | — | — | Checkpoint file to load. |
vae_name | COMBO | — | — | VAE file to use with the checkpoint. |
clip_skip | INT | -2 | -24 to 0 | Number of CLIP layers to skip. Negative values are expected; -2 is the common A1111-style setting. |
lora_name | COMBO | — | — | LoRA file to apply. |
lora_model_strength | FLOAT | 1.0 | -10.0 to 10.0 | Strength applied to the model portion of the LoRA. |
lora_clip_strength | FLOAT | 1.0 | -10.0 to 10.0 | Strength applied to the CLIP portion of the LoRA. |
resolution | COMBO | 512 x 512 | — | Preset resolution used to configure the empty latent dimensions. |
empty_latent_width | INT | — | — | Width of the empty latent. Can be set manually or derived from resolution. |
empty_latent_height | INT | — | — | Height of the empty latent. Can be set manually or derived from resolution. |
positive | STRING | `` | — | Positive prompt text. |
negative | STRING | `` | — | Negative prompt text. |
batch_size | INT | 1 | 1 to 4096 | Number of latent samples to generate in a batch. |
optional_lora_stack | LORA_STACK | — | — | Optional stack of additional LoRA adapters. When connected, these are applied in addition to lora_name. |
optional_controlnet_stack | CONTROL_NET_STACK | — | — | Optional stack of ControlNet adapters to apply alongside the loaded checkpoint. |
a1111_prompt_style | BOOLEAN | — | — | Enables A1111-style prompt processing when active. |
Outputs
| Field | Type | Description |
|---|---|---|
PIPE_LINE | PIPE_LINE | EasyUse pipeline object containing the loaded model, VAE, prompts, latent settings, and related data for downstream EasyUse nodes. |
MODEL | MODEL | The composed model after checkpoint loading and LoRA application. |
VAE | VAE | The loaded VAE. |
Usage Notes
- This node is intended as an all-in-one starting point for checkpoint + LoRA + prompt workflows, making it convenient for A1111-style generations.
- The default
clip_skipof-2matches the commonly used CLIP skip value in Automatic1111. - Use
resolutionto quickly choose a standard latent size, or setempty_latent_widthandempty_latent_heightdirectly for custom dimensions. - If
lora_nameis unused, you can leave the LoRA strength values at their defaults or adjust them without affecting the checkpoint. - Connect
optional_lora_stackoroptional_controlnet_stackwhen you need multiple LoRAs or ControlNets combined in one loader step. - The
PIPE_LINEoutput is useful when feeding other EasyUse nodes because it carries the prompts, latent, model, and VAE as one collection. The separateMODELandVAEoutputs are available when you only need those components.
Comments
Sign in with GitHub to join the discussion.