comfyui_dreamlite
Experimental ComfyUI custom node wrapper for ByteVisionLab/DreamLite, providing text-to-image and text-guided image editing through official pipeline API.
ComfyUI-DreamLite
Experimental ComfyUI custom node wrapper for ByteVisionLab/DreamLite.
This is not an official ByteDance/ByteVisionLab project. It wraps the official DreamLite Python pipelines instead of integrating DreamLite into ComfyUI's native KSampler stack.
Nodes
- DreamLite Generate/Edit: text-to-image and text-guided image editing through the official pipeline API.
Install
-
Copy this folder to
ComfyUI/custom_nodes/ComfyUI-DreamLite. -
Install dependencies into the same Python environment used by ComfyUI:
pip install -r ComfyUI/custom_nodes/ComfyUI-DreamLite/requirements.txt -
Clone the official DreamLite repository somewhere locally:
git clone https://github.com/ByteVisionLab/DreamLite.git -
Put DreamLite model weights in the official repo layout, for example:
DreamLite/models/DreamLite-base DreamLite/models/DreamLite-mobile -
Restart ComfyUI.
-
Add
DreamLite > DreamLite Generate/Edit. -
Set
dreamlite_repoto your localDreamLiterepository path. -
Set
model_pathtomodels/DreamLite-base,models/DreamLite-mobile, or an absolute model folder path.
Recommended settings
- Base:
variant=base,steps=0orsteps=28,model_path=models/DreamLite-base. - Mobile:
variant=mobile,steps=0orsteps=4,model_path=models/DreamLite-mobile.
Notes
- Optional
imageinput enables text-guided editing. size_mode=use_input_image_sizeuses the connected image's dimensions for editing.steps=0uses official defaults: base=28 and mobile=4.- This node caches the pipeline in memory. Restart ComfyUI to fully unload it.
- The wrapper has not been validated without access to the gated DreamLite weights.