ComfyUI Extension
ComfyUI-WeeLLM
Native ComfyUI integration for WeeLLM: Run multi-billion parameter diffusion models (FLUX, SD3, MiniMax) under 4GB VRAM using layer-streaming inference.
Jit-Roy/ComfyUI-WeeLLM
Nodes3
On cloudLocal install
CategoryWeeLLM
Stars1
Updated15 days ago
Nodes (3)
Readme
ComfyUI-WeeLLM
A native ComfyUI custom node wrapper for WeeLLM — bringing ultra-low VRAM layer-streaming inference directly into your Comfy workflows.
With ComfyUI-WeeLLM, you can run massive diffusion models (like FLUX.1, SD3, and MiniMax-H3) on GPUs with less than 4GB of VRAM, without resorting to quantization or model degradation.

Installation
Method 1: ComfyUI Manager (Recommended)
- Open the ComfyUI Manager.
- Click Install Custom Nodes.
- Search for
ComfyUI-WeeLLMand click Install. - Restart ComfyUI.
Method 2: Manual Git Clone
Navigate to your ComfyUI/custom_nodes/ directory and run:
git clone https://github.com/Jit-Roy/ComfyUI-WeeLLM.git
cd ComfyUI-WeeLLM
pip install -r requirements.txt
Nodes
1. WeeLLM Loader
Responsible for configuring and caching the model pipeline.
model_path: Provide the Hugging Face repo ID (e.g.black-forest-labs/FLUX.1-schnell) or a local directory.task: Select the type of pipeline to initialize (text-to-image,image-to-image,video).dtype: The precision to use (e.g.,bfloat16).
2. WeeLLM Generate
Generates images using the loaded pipeline.
- Connect the
WEE_PIPELINEfrom the Loader to this node. - Supports optional
imageandmask_imageinputs for automatic Image-to-Image and Inpainting.
3. WeeLLM Video Generate
Generates video batches for models like MiniMax-H3 FL2VA.
- Connect the
WEE_PIPELINEfrom the Loader (withvideotask selected) to this node. - Outputs an
IMAGEbatch that can be sent directly to Video Combine nodes.