├── .github └── workflows │ └── publish.yml ├── .gitignore ├── README.md ├── __init__.py ├── apis.py ├── controlnet_model_list.json ├── controlnet_module_list.json ├── nodes.py ├── options.json ├── pyproject.toml ├── samplers.json ├── samplers_sample.json ├── samples ├── ProjectorzGen_Sample.json ├── ProjectorzGen_Sample.png ├── ProjectorzInpaint_Sample.json └── ProjectorzInpaint_Sample.png ├── sd-models.json ├── sd-models_sample.json ├── sd-vae.json ├── sd-vae_sample.json ├── sysinfo.json ├── upscalers.json ├── upscalers_sample.json ├── web └── StableProjectorzBridge.js ├── ws.py └── ws_manager.py /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorAherne/ComfyUI-StableProjectorzBridge/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorAherne/ComfyUI-StableProjectorzBridge/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorAherne/ComfyUI-StableProjectorzBridge/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorAherne/ComfyUI-StableProjectorzBridge/HEAD/__init__.py -------------------------------------------------------------------------------- /apis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorAherne/ComfyUI-StableProjectorzBridge/HEAD/apis.py -------------------------------------------------------------------------------- /controlnet_model_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorAherne/ComfyUI-StableProjectorzBridge/HEAD/controlnet_model_list.json -------------------------------------------------------------------------------- /controlnet_module_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorAherne/ComfyUI-StableProjectorzBridge/HEAD/controlnet_module_list.json -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorAherne/ComfyUI-StableProjectorzBridge/HEAD/nodes.py -------------------------------------------------------------------------------- /options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorAherne/ComfyUI-StableProjectorzBridge/HEAD/options.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorAherne/ComfyUI-StableProjectorzBridge/HEAD/pyproject.toml -------------------------------------------------------------------------------- /samplers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorAherne/ComfyUI-StableProjectorzBridge/HEAD/samplers.json -------------------------------------------------------------------------------- /samplers_sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorAherne/ComfyUI-StableProjectorzBridge/HEAD/samplers_sample.json -------------------------------------------------------------------------------- /samples/ProjectorzGen_Sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorAherne/ComfyUI-StableProjectorzBridge/HEAD/samples/ProjectorzGen_Sample.json -------------------------------------------------------------------------------- /samples/ProjectorzGen_Sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorAherne/ComfyUI-StableProjectorzBridge/HEAD/samples/ProjectorzGen_Sample.png -------------------------------------------------------------------------------- /samples/ProjectorzInpaint_Sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorAherne/ComfyUI-StableProjectorzBridge/HEAD/samples/ProjectorzInpaint_Sample.json -------------------------------------------------------------------------------- /samples/ProjectorzInpaint_Sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorAherne/ComfyUI-StableProjectorzBridge/HEAD/samples/ProjectorzInpaint_Sample.png -------------------------------------------------------------------------------- /sd-models.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorAherne/ComfyUI-StableProjectorzBridge/HEAD/sd-models.json -------------------------------------------------------------------------------- /sd-models_sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorAherne/ComfyUI-StableProjectorzBridge/HEAD/sd-models_sample.json -------------------------------------------------------------------------------- /sd-vae.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorAherne/ComfyUI-StableProjectorzBridge/HEAD/sd-vae.json -------------------------------------------------------------------------------- /sd-vae_sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorAherne/ComfyUI-StableProjectorzBridge/HEAD/sd-vae_sample.json -------------------------------------------------------------------------------- /sysinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorAherne/ComfyUI-StableProjectorzBridge/HEAD/sysinfo.json -------------------------------------------------------------------------------- /upscalers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorAherne/ComfyUI-StableProjectorzBridge/HEAD/upscalers.json -------------------------------------------------------------------------------- /upscalers_sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorAherne/ComfyUI-StableProjectorzBridge/HEAD/upscalers_sample.json -------------------------------------------------------------------------------- /web/StableProjectorzBridge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorAherne/ComfyUI-StableProjectorzBridge/HEAD/web/StableProjectorzBridge.js -------------------------------------------------------------------------------- /ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorAherne/ComfyUI-StableProjectorzBridge/HEAD/ws.py -------------------------------------------------------------------------------- /ws_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorAherne/ComfyUI-StableProjectorzBridge/HEAD/ws_manager.py --------------------------------------------------------------------------------