├── .gitattributes ├── .github └── workflows │ └── publish.yml ├── .gitignore ├── __init__.py ├── empty_text_embed_delight.pt ├── example_workflows ├── example.png └── stable_x_example_01.json ├── nodes.py ├── pyproject.toml ├── readme.md ├── requirements.txt └── stabledelight ├── __init__.py ├── controlnetvae.py └── pipeline_yoso_delight.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-StableXWrapper/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-StableXWrapper/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-StableXWrapper/HEAD/.gitignore -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-StableXWrapper/HEAD/__init__.py -------------------------------------------------------------------------------- /empty_text_embed_delight.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-StableXWrapper/HEAD/empty_text_embed_delight.pt -------------------------------------------------------------------------------- /example_workflows/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-StableXWrapper/HEAD/example_workflows/example.png -------------------------------------------------------------------------------- /example_workflows/stable_x_example_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-StableXWrapper/HEAD/example_workflows/stable_x_example_01.json -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-StableXWrapper/HEAD/nodes.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-StableXWrapper/HEAD/pyproject.toml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-StableXWrapper/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | accelerate 2 | diffusers>=0.28.0 3 | Pillow -------------------------------------------------------------------------------- /stabledelight/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stabledelight/controlnetvae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-StableXWrapper/HEAD/stabledelight/controlnetvae.py -------------------------------------------------------------------------------- /stabledelight/pipeline_yoso_delight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-StableXWrapper/HEAD/stabledelight/pipeline_yoso_delight.py --------------------------------------------------------------------------------