├── .gitignore ├── LICENSE ├── README.md ├── WORKFLOWS ├── FLUX_PSUEDO_STYLETRANSFER.png ├── FLUX_REMOTE_BATCH.png ├── FLUX_REMOTE_CONDITIONING.png ├── Remote Conditioning.png ├── STYLETRANSFER_WF.png └── making_remote_conditioning.png ├── __init__.py ├── core ├── dispatch.py ├── fetch.py └── utils.py ├── fonts └── Roboto-Regular.ttf ├── mass-process ├── job.example.yaml ├── readme.md └── server.py ├── nodes ├── advanced.py ├── images.py ├── latents.py ├── simple.py └── workflows.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nux1111/ComfyUI_NetDist_Plus/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nux1111/ComfyUI_NetDist_Plus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nux1111/ComfyUI_NetDist_Plus/HEAD/README.md -------------------------------------------------------------------------------- /WORKFLOWS/FLUX_PSUEDO_STYLETRANSFER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nux1111/ComfyUI_NetDist_Plus/HEAD/WORKFLOWS/FLUX_PSUEDO_STYLETRANSFER.png -------------------------------------------------------------------------------- /WORKFLOWS/FLUX_REMOTE_BATCH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nux1111/ComfyUI_NetDist_Plus/HEAD/WORKFLOWS/FLUX_REMOTE_BATCH.png -------------------------------------------------------------------------------- /WORKFLOWS/FLUX_REMOTE_CONDITIONING.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nux1111/ComfyUI_NetDist_Plus/HEAD/WORKFLOWS/FLUX_REMOTE_CONDITIONING.png -------------------------------------------------------------------------------- /WORKFLOWS/Remote Conditioning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nux1111/ComfyUI_NetDist_Plus/HEAD/WORKFLOWS/Remote Conditioning.png -------------------------------------------------------------------------------- /WORKFLOWS/STYLETRANSFER_WF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nux1111/ComfyUI_NetDist_Plus/HEAD/WORKFLOWS/STYLETRANSFER_WF.png -------------------------------------------------------------------------------- /WORKFLOWS/making_remote_conditioning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nux1111/ComfyUI_NetDist_Plus/HEAD/WORKFLOWS/making_remote_conditioning.png -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nux1111/ComfyUI_NetDist_Plus/HEAD/__init__.py -------------------------------------------------------------------------------- /core/dispatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nux1111/ComfyUI_NetDist_Plus/HEAD/core/dispatch.py -------------------------------------------------------------------------------- /core/fetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nux1111/ComfyUI_NetDist_Plus/HEAD/core/fetch.py -------------------------------------------------------------------------------- /core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nux1111/ComfyUI_NetDist_Plus/HEAD/core/utils.py -------------------------------------------------------------------------------- /fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nux1111/ComfyUI_NetDist_Plus/HEAD/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /mass-process/job.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nux1111/ComfyUI_NetDist_Plus/HEAD/mass-process/job.example.yaml -------------------------------------------------------------------------------- /mass-process/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nux1111/ComfyUI_NetDist_Plus/HEAD/mass-process/readme.md -------------------------------------------------------------------------------- /mass-process/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nux1111/ComfyUI_NetDist_Plus/HEAD/mass-process/server.py -------------------------------------------------------------------------------- /nodes/advanced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nux1111/ComfyUI_NetDist_Plus/HEAD/nodes/advanced.py -------------------------------------------------------------------------------- /nodes/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nux1111/ComfyUI_NetDist_Plus/HEAD/nodes/images.py -------------------------------------------------------------------------------- /nodes/latents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nux1111/ComfyUI_NetDist_Plus/HEAD/nodes/latents.py -------------------------------------------------------------------------------- /nodes/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nux1111/ComfyUI_NetDist_Plus/HEAD/nodes/simple.py -------------------------------------------------------------------------------- /nodes/workflows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nux1111/ComfyUI_NetDist_Plus/HEAD/nodes/workflows.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests>=2.28.2 2 | --------------------------------------------------------------------------------