├── .github └── workflows │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── README_EN.md ├── __init__.py ├── example └── workflow_base.png ├── nodes ├── BaseNode.py ├── __init__.py └── libs │ ├── YosoDelightPipe.py │ └── __init__.py └── pyproject.toml /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lldacing/ComfyUI_StableDelight_ll/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lldacing/ComfyUI_StableDelight_ll/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lldacing/ComfyUI_StableDelight_ll/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lldacing/ComfyUI_StableDelight_ll/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lldacing/ComfyUI_StableDelight_ll/HEAD/README_EN.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lldacing/ComfyUI_StableDelight_ll/HEAD/__init__.py -------------------------------------------------------------------------------- /example/workflow_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lldacing/ComfyUI_StableDelight_ll/HEAD/example/workflow_base.png -------------------------------------------------------------------------------- /nodes/BaseNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lldacing/ComfyUI_StableDelight_ll/HEAD/nodes/BaseNode.py -------------------------------------------------------------------------------- /nodes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lldacing/ComfyUI_StableDelight_ll/HEAD/nodes/__init__.py -------------------------------------------------------------------------------- /nodes/libs/YosoDelightPipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lldacing/ComfyUI_StableDelight_ll/HEAD/nodes/libs/YosoDelightPipe.py -------------------------------------------------------------------------------- /nodes/libs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lldacing/ComfyUI_StableDelight_ll/HEAD/pyproject.toml --------------------------------------------------------------------------------