├── .github └── workflows │ └── publish.yml ├── .gitignore ├── README.md ├── __init__.py ├── nodes.py ├── pyproject.toml └── samples ├── comfy_usage.png └── example_workflow.json /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orssorbit/ComfyUI-wanBlockswap/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *__pycache__ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orssorbit/ComfyUI-wanBlockswap/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orssorbit/ComfyUI-wanBlockswap/HEAD/__init__.py -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orssorbit/ComfyUI-wanBlockswap/HEAD/nodes.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orssorbit/ComfyUI-wanBlockswap/HEAD/pyproject.toml -------------------------------------------------------------------------------- /samples/comfy_usage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orssorbit/ComfyUI-wanBlockswap/HEAD/samples/comfy_usage.png -------------------------------------------------------------------------------- /samples/example_workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orssorbit/ComfyUI-wanBlockswap/HEAD/samples/example_workflow.json --------------------------------------------------------------------------------