├── .dockerignore ├── .gitignore ├── .gitmodules ├── LICENSE ├── MAKING_A_MODEL_GUIDE.md ├── README.md ├── cog.yaml ├── cog_model_helpers ├── __init__.py ├── optimise_images.py └── seed.py ├── comfyui.py ├── comfyui_enums.py ├── config.py ├── custom_node_configs ├── comfy.settings.json ├── rgthree_config.json └── was_suite_config.json ├── custom_node_helper.py ├── custom_node_helpers └── __init__.py ├── custom_nodes.json ├── node.py ├── predict.py ├── reset.json ├── scripts ├── get_weights.py ├── get_weights_completion.sh ├── install_custom_nodes.py ├── prepare_template.py ├── reset.py ├── start.sh └── upgrade_custom_nodes.py ├── weights.json ├── weights_downloader.py ├── weights_manifest.py └── workflow_api.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-flux-layers-explorer/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-flux-layers-explorer/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-flux-layers-explorer/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-flux-layers-explorer/HEAD/LICENSE -------------------------------------------------------------------------------- /MAKING_A_MODEL_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-flux-layers-explorer/HEAD/MAKING_A_MODEL_GUIDE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-flux-layers-explorer/HEAD/README.md -------------------------------------------------------------------------------- /cog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-flux-layers-explorer/HEAD/cog.yaml -------------------------------------------------------------------------------- /cog_model_helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cog_model_helpers/optimise_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-flux-layers-explorer/HEAD/cog_model_helpers/optimise_images.py -------------------------------------------------------------------------------- /cog_model_helpers/seed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-flux-layers-explorer/HEAD/cog_model_helpers/seed.py -------------------------------------------------------------------------------- /comfyui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-flux-layers-explorer/HEAD/comfyui.py -------------------------------------------------------------------------------- /comfyui_enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-flux-layers-explorer/HEAD/comfyui_enums.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-flux-layers-explorer/HEAD/config.py -------------------------------------------------------------------------------- /custom_node_configs/comfy.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-flux-layers-explorer/HEAD/custom_node_configs/comfy.settings.json -------------------------------------------------------------------------------- /custom_node_configs/rgthree_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-flux-layers-explorer/HEAD/custom_node_configs/rgthree_config.json -------------------------------------------------------------------------------- /custom_node_configs/was_suite_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-flux-layers-explorer/HEAD/custom_node_configs/was_suite_config.json -------------------------------------------------------------------------------- /custom_node_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-flux-layers-explorer/HEAD/custom_node_helper.py -------------------------------------------------------------------------------- /custom_node_helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-flux-layers-explorer/HEAD/custom_node_helpers/__init__.py -------------------------------------------------------------------------------- /custom_nodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-flux-layers-explorer/HEAD/custom_nodes.json -------------------------------------------------------------------------------- /node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-flux-layers-explorer/HEAD/node.py -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-flux-layers-explorer/HEAD/predict.py -------------------------------------------------------------------------------- /reset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-flux-layers-explorer/HEAD/reset.json -------------------------------------------------------------------------------- /scripts/get_weights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-flux-layers-explorer/HEAD/scripts/get_weights.py -------------------------------------------------------------------------------- /scripts/get_weights_completion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-flux-layers-explorer/HEAD/scripts/get_weights_completion.sh -------------------------------------------------------------------------------- /scripts/install_custom_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-flux-layers-explorer/HEAD/scripts/install_custom_nodes.py -------------------------------------------------------------------------------- /scripts/prepare_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-flux-layers-explorer/HEAD/scripts/prepare_template.py -------------------------------------------------------------------------------- /scripts/reset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-flux-layers-explorer/HEAD/scripts/reset.py -------------------------------------------------------------------------------- /scripts/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-flux-layers-explorer/HEAD/scripts/start.sh -------------------------------------------------------------------------------- /scripts/upgrade_custom_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-flux-layers-explorer/HEAD/scripts/upgrade_custom_nodes.py -------------------------------------------------------------------------------- /weights.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-flux-layers-explorer/HEAD/weights.json -------------------------------------------------------------------------------- /weights_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-flux-layers-explorer/HEAD/weights_downloader.py -------------------------------------------------------------------------------- /weights_manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-flux-layers-explorer/HEAD/weights_manifest.py -------------------------------------------------------------------------------- /workflow_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-flux-layers-explorer/HEAD/workflow_api.json --------------------------------------------------------------------------------