├── .gitignore ├── LICENSE.txt ├── README.md ├── __init__.py ├── components ├── .test │ ├── bridge.component.json │ ├── cnet.component.json │ ├── i2i-start.component.json │ ├── inversion.component.json │ ├── no-output.component.json │ └── simple.component.json ├── detailer │ ├── face-detailer-start.component.json │ ├── mask-detailer.2lora.ir.component.json │ ├── mask-detailer.ir.component.json │ └── mask-detailer.lora.ir.component.json ├── img-to │ ├── i2i-start-pixels.component.json │ ├── i2i.component.json │ ├── image-enc-pipe.component.json │ ├── image-enc.component.json │ ├── image-mix-controlnet-seecoder.component.json │ ├── img-ksample-latent.component-tiled.component.json │ └── img-ksample-latent.component.json └── util │ ├── controlnet.ir.component.json │ ├── edit │ ├── edit-2lora-clips-basic_pipe.component.json │ ├── edit-clips-basic_pipe.component.json │ └── edit-lora-clips-basic_pipe.component.json │ ├── empty-to-image.component.json │ ├── inversion.ir.component.json │ ├── ksample-dec.component.json │ ├── make-basic_pipe.component.json │ ├── make-sdxl-base-basic_pipe.component.json │ ├── make-sdxl-refiner-basic_pipe.component.json │ ├── pixel-to-masked-latent.component.json │ ├── pixel-upscale-basic_pipe.component.json │ ├── positive-ksample-dec-pipe.component.json │ └── sdxl-ksample.component.json ├── image_refiner ├── custom_server.py └── imagerefiner.py ├── js ├── help.png ├── image-refiner.js └── workflow-component.js ├── misc ├── 2obj-example.json ├── component-build.png ├── component-files.png ├── component-use.png ├── i2i-example.json ├── image-refiner.png ├── menu.png ├── menu2.png ├── pixel-to-masked-latent-example.json ├── sample-workflow.png ├── sample.json ├── sample.png └── settings.png └── workflow_component ├── component_loader.py ├── custom_nodes.py ├── custom_server.py ├── execution_experimental.py └── workflow_execution.py /.gitignore: -------------------------------------------------------------------------------- 1 | **/__pycache__ 2 | .idea -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/__init__.py -------------------------------------------------------------------------------- /components/.test/bridge.component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/components/.test/bridge.component.json -------------------------------------------------------------------------------- /components/.test/cnet.component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/components/.test/cnet.component.json -------------------------------------------------------------------------------- /components/.test/i2i-start.component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/components/.test/i2i-start.component.json -------------------------------------------------------------------------------- /components/.test/inversion.component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/components/.test/inversion.component.json -------------------------------------------------------------------------------- /components/.test/no-output.component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/components/.test/no-output.component.json -------------------------------------------------------------------------------- /components/.test/simple.component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/components/.test/simple.component.json -------------------------------------------------------------------------------- /components/detailer/face-detailer-start.component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/components/detailer/face-detailer-start.component.json -------------------------------------------------------------------------------- /components/detailer/mask-detailer.2lora.ir.component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/components/detailer/mask-detailer.2lora.ir.component.json -------------------------------------------------------------------------------- /components/detailer/mask-detailer.ir.component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/components/detailer/mask-detailer.ir.component.json -------------------------------------------------------------------------------- /components/detailer/mask-detailer.lora.ir.component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/components/detailer/mask-detailer.lora.ir.component.json -------------------------------------------------------------------------------- /components/img-to/i2i-start-pixels.component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/components/img-to/i2i-start-pixels.component.json -------------------------------------------------------------------------------- /components/img-to/i2i.component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/components/img-to/i2i.component.json -------------------------------------------------------------------------------- /components/img-to/image-enc-pipe.component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/components/img-to/image-enc-pipe.component.json -------------------------------------------------------------------------------- /components/img-to/image-enc.component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/components/img-to/image-enc.component.json -------------------------------------------------------------------------------- /components/img-to/image-mix-controlnet-seecoder.component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/components/img-to/image-mix-controlnet-seecoder.component.json -------------------------------------------------------------------------------- /components/img-to/img-ksample-latent.component-tiled.component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/components/img-to/img-ksample-latent.component-tiled.component.json -------------------------------------------------------------------------------- /components/img-to/img-ksample-latent.component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/components/img-to/img-ksample-latent.component.json -------------------------------------------------------------------------------- /components/util/controlnet.ir.component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/components/util/controlnet.ir.component.json -------------------------------------------------------------------------------- /components/util/edit/edit-2lora-clips-basic_pipe.component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/components/util/edit/edit-2lora-clips-basic_pipe.component.json -------------------------------------------------------------------------------- /components/util/edit/edit-clips-basic_pipe.component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/components/util/edit/edit-clips-basic_pipe.component.json -------------------------------------------------------------------------------- /components/util/edit/edit-lora-clips-basic_pipe.component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/components/util/edit/edit-lora-clips-basic_pipe.component.json -------------------------------------------------------------------------------- /components/util/empty-to-image.component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/components/util/empty-to-image.component.json -------------------------------------------------------------------------------- /components/util/inversion.ir.component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/components/util/inversion.ir.component.json -------------------------------------------------------------------------------- /components/util/ksample-dec.component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/components/util/ksample-dec.component.json -------------------------------------------------------------------------------- /components/util/make-basic_pipe.component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/components/util/make-basic_pipe.component.json -------------------------------------------------------------------------------- /components/util/make-sdxl-base-basic_pipe.component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/components/util/make-sdxl-base-basic_pipe.component.json -------------------------------------------------------------------------------- /components/util/make-sdxl-refiner-basic_pipe.component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/components/util/make-sdxl-refiner-basic_pipe.component.json -------------------------------------------------------------------------------- /components/util/pixel-to-masked-latent.component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/components/util/pixel-to-masked-latent.component.json -------------------------------------------------------------------------------- /components/util/pixel-upscale-basic_pipe.component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/components/util/pixel-upscale-basic_pipe.component.json -------------------------------------------------------------------------------- /components/util/positive-ksample-dec-pipe.component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/components/util/positive-ksample-dec-pipe.component.json -------------------------------------------------------------------------------- /components/util/sdxl-ksample.component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/components/util/sdxl-ksample.component.json -------------------------------------------------------------------------------- /image_refiner/custom_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/image_refiner/custom_server.py -------------------------------------------------------------------------------- /image_refiner/imagerefiner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/image_refiner/imagerefiner.py -------------------------------------------------------------------------------- /js/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/js/help.png -------------------------------------------------------------------------------- /js/image-refiner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/js/image-refiner.js -------------------------------------------------------------------------------- /js/workflow-component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/js/workflow-component.js -------------------------------------------------------------------------------- /misc/2obj-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/misc/2obj-example.json -------------------------------------------------------------------------------- /misc/component-build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/misc/component-build.png -------------------------------------------------------------------------------- /misc/component-files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/misc/component-files.png -------------------------------------------------------------------------------- /misc/component-use.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/misc/component-use.png -------------------------------------------------------------------------------- /misc/i2i-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/misc/i2i-example.json -------------------------------------------------------------------------------- /misc/image-refiner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/misc/image-refiner.png -------------------------------------------------------------------------------- /misc/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/misc/menu.png -------------------------------------------------------------------------------- /misc/menu2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/misc/menu2.png -------------------------------------------------------------------------------- /misc/pixel-to-masked-latent-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/misc/pixel-to-masked-latent-example.json -------------------------------------------------------------------------------- /misc/sample-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/misc/sample-workflow.png -------------------------------------------------------------------------------- /misc/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/misc/sample.json -------------------------------------------------------------------------------- /misc/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/misc/sample.png -------------------------------------------------------------------------------- /misc/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/misc/settings.png -------------------------------------------------------------------------------- /workflow_component/component_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/workflow_component/component_loader.py -------------------------------------------------------------------------------- /workflow_component/custom_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/workflow_component/custom_nodes.py -------------------------------------------------------------------------------- /workflow_component/custom_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/workflow_component/custom_server.py -------------------------------------------------------------------------------- /workflow_component/execution_experimental.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/workflow_component/execution_experimental.py -------------------------------------------------------------------------------- /workflow_component/workflow_execution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ltdrdata/ComfyUI-Workflow-Component/HEAD/workflow_component/workflow_execution.py --------------------------------------------------------------------------------