Overview
ComfyUI represents image generation as a graph of connected nodes. Each node performs one part of the process, and each connection passes a specific type of data to the next stage. The interface becomes manageable once the graph is understood as a visible pipeline rather than a collection of unrelated boxes.
The standard text-to-image pipeline has six functional stages:
- Load a checkpoint.
- Encode a positive prompt.
- Encode a negative prompt.
- Create an empty latent image.
- Sample the latent representation with a KSampler.
- Decode the latent result and preview or save the image.