├── .github └── workflows │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── img ├── workflow.png ├── workflow2.png ├── workflow3.png └── workflow3demo.gif ├── nodes.py ├── pyproject.toml ├── requirements.txt └── utils.py /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Limitex/ComfyUI-Diffusers/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Limitex/ComfyUI-Diffusers/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Limitex/ComfyUI-Diffusers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Limitex/ComfyUI-Diffusers/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Limitex/ComfyUI-Diffusers/HEAD/__init__.py -------------------------------------------------------------------------------- /img/workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Limitex/ComfyUI-Diffusers/HEAD/img/workflow.png -------------------------------------------------------------------------------- /img/workflow2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Limitex/ComfyUI-Diffusers/HEAD/img/workflow2.png -------------------------------------------------------------------------------- /img/workflow3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Limitex/ComfyUI-Diffusers/HEAD/img/workflow3.png -------------------------------------------------------------------------------- /img/workflow3demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Limitex/ComfyUI-Diffusers/HEAD/img/workflow3demo.gif -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Limitex/ComfyUI-Diffusers/HEAD/nodes.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Limitex/ComfyUI-Diffusers/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Limitex/ComfyUI-Diffusers/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Limitex/ComfyUI-Diffusers/HEAD/utils.py --------------------------------------------------------------------------------