Navigate:
ComfyUI
~$COMFY0.0%

ComfyUI: Node-based diffusion model interface

Visual graph-based diffusion model workflow builder.

LIVE RANKINGS • 12:29 PM • STEADY
OVERALL
#437
3
AI & ML
#111
30 DAY RANKING TREND
ovr#437
·AI#111
STARS
104.3K
FORKS
11.9K
7D STARS
0
7D FORKS
0
Tags:
See Repo:
Share:

Learn more about ComfyUI

ComfyUI is a Python-based backend and frontend application that provides a node-graph interface for building diffusion model workflows. It implements a modular architecture where individual operations (model loading, sampling, image processing) are represented as nodes that connect to form execution graphs. The system supports multiple diffusion model families including Stable Diffusion variants, SDXL, Flux, and specialized models for video and audio generation, with backend support for NVIDIA, AMD, Intel, and Apple Silicon GPUs. Workflows are constructed visually without requiring code, though the underlying system can be accessed programmatically via API.

ComfyUI

1

Node-Based Workflow Construction

Each operation is a discrete, connectable node forming an execution graph. Complex pipelines are built visually without code, making workflow logic explicit, modular, and reusable across projects.

2

Multi-Model Family Support

Supports Stable Diffusion 1.x through Flux, SDXL, Hunyuan, plus specialized video, audio, and 3D models. Different model families can be mixed within a single workflow without compatibility barriers.

3

Abstracted GPU Backends

Unified interface across NVIDIA CUDA, AMD ROCm, Intel Arc, Apple Metal, and Ascend NPUs. Platform-specific optimizations are handled internally, eliminating manual backend configuration.


import requests
import json

workflow = json.load(open('workflow.json'))

response = requests.post(
    'http://127.0.0.1:8188/prompt',
    json={'prompt': workflow}
)

prompt_id = response.json()['prompt_id']
print(f"Queued: {prompt_id}")

vv0.12.3

Fix crash on safetensors load for some 3rd party Models

  • Fix crash on safetensors load for some 3rd party Models
  • mp: Fix checkpoint saving
  • add File3DAny output to Load3D node; extend SaveGLB to accept File3DAny as input
  • Fix ace step nan issue on some hardware/pytorch configs
  • Try to fix ace text encoder slowness on some configs
vv0.12.2

Support the 4B ace step 1.5 lm model.

  • Support the 4B ace step 1.5 lm model
  • Dynamicvram: Remove Aimdo exemption for emptycache (fixes VRAM leak)
  • Fix crash with ace step 1.5
vv0.12.1

Add progress bar to ace step.

  • Add progress bar to ace step
  • Fix some issues with mac
  • llama: cast logits as a comfy-weight
  • Fix mac issue
  • feat(comfy_api): add basic 3D Model file types

See how people are using ComfyUI

Loading tweets...


[ EXPLORE MORE ]

Related Repositories

Discover similar tools and frameworks used by developers