Skip to content

Core Nodes

Core nodes are built-in to ComfyUI.

Node List

NodeDescription
CheckpointLoaderLoad model checkpoints
CLIPTextEncodeEncode text prompts
KSamplerSample latent images
VAE operationsEncode/decode latent
Image I/OLoad and save images

Common Patterns

Basic Generation

Checkpoint → Text(positive) → KSampler → Decode → Save
          ↘ Text(negative) ↗

With ControlNet

Checkpoint → Text → KSampler → Decode → Save
              ↑         ↑
ControlNet ← Image → Preprocessor

Node Categories

Model Loading

  • CheckpointLoader
  • UnetLoader
  • VAELoader

Text Processing

  • CLIPTextEncode
  • CLIPTextEncodeSDXL
  • StringLiteral

Sampling

  • KSampler
  • KSamplerAdvanced
  • SamplerCustom

Latent Operations

  • VAEEncode
  • VAEDecode
  • EmptyLatentImage
  • LatentUpscale

Image Operations

  • LoadImage
  • SaveImage
  • ImageScale
  • ImageCrop

Next Steps