![]() |
Implementation of VIBE (Visual Instruction Based Editor) as a custom node for ComfyUI. Edit images using natural language instructions (e.g., "make it winter", "change the dog to a cat"). VIBE leverages the efficient Sana1.5-1.6B diffusion model and Qwen3-VL-2B-Instruct for fast, high-quality image manipulation.
|
- Load this workflow into ComfyUI.
- Open ComfyUI Manager and click "Install Missing Custom Nodes".
- Restart ComfyUI after the installation finishes.
- Once reloaded, locate the VIBE Image Editor node (in Step 2) and click the "Check / Download Model" button. This will automatically download the necessary weights.
Drag and drop this image into ComfyUI to load the workflow:
-
Clone the repository: Navigate to your
ComfyUI/custom_nodesfolder and run:git clone https://github.com/ato-zen/ComfyUI-VIBE
-
Install dependencies: Open terminal in the
ComfyUI-VIBEfolder and run:pip install -r requirements.txt
This node looks for models in: ComfyUI/models/vibe/
-
Create the target folder:
mkdir -p models/vibe cd models/vibe -
Download the weights: Clone from Hugging Face (requires git-lfs):
git clone https://huggingface.co/iitolstykh/VIBE-Image-Edit
Structure should look like:
📂 ComfyUI/
└── 📂 models/
└── 📂 vibe/
└── 📂 VIBE-Image-Edit/
├── model_index.json
├── 📂 scheduler/
├── 📂 text_encoder/
├── 📂 tokenizer/
├── 📂 transformer/
└── 📂 vae/
- Original Project: VIBE: Visual Instruction Based Editor
- Model Authors: Grigorii Alekseenko, Aleksandr Gordeev, Irina Tolstykh, et al.
- Based on: Sana and Qwen3-VL.
ComfyUI Node implementation by ato-zen.

