├── .dockerignore ├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── LICENSE ├── MAKING_A_MODEL_GUIDE.md ├── README.md ├── cog-safe-push-configs └── default.yaml ├── 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 ├── ComfyUI_Advanced_Live_Portrait.py ├── ComfyUI_Anyline.py ├── ComfyUI_BRIA_AI_RMBG.py ├── ComfyUI_BiRefNet.py ├── ComfyUI_BrushNet.py ├── ComfyUI_Controlnet_Aux.py ├── ComfyUI_Essentials.py ├── ComfyUI_FBCNN.py ├── ComfyUI_FlashVSR.py ├── ComfyUI_Frame_Interpolation.py ├── ComfyUI_IPAdapter_plus.py ├── ComfyUI_Impact_Pack.py ├── ComfyUI_InstantID.py ├── ComfyUI_KJNodes.py ├── ComfyUI_LayerDiffuse.py ├── ComfyUI_Reactor.py ├── ComfyUI_Segment_Anything.py ├── ComfyUI_Video_Matting.py ├── ComfyUI_tinyterraNodes.py ├── Misto_Controlnet_Flux_Dev.py ├── PuLID.py ├── WAS_Node_Suite.py ├── X_Flux_ComfyUI.py ├── __init__.py └── rembg.py ├── custom_nodes.json ├── example_predict.py ├── examples ├── api_workflows │ ├── FlashVSR_api.json │ ├── advanced_live_portrait_api.json │ ├── all_preprocessors.json │ ├── animatediff.json │ ├── anyline_api.json │ ├── attention_couple_api.json │ ├── b_lora_api.json │ ├── base64.json │ ├── base64_send_websocket.json │ ├── birefnet_api.json │ ├── birefnet_ii_api.json │ ├── bria_rmbg_api.json │ ├── brushnet_basic_api.json │ ├── brushnet_powerpaint_api.json │ ├── comfyui_api_node_api.json │ ├── comfyui_essentials_all_workflows.json │ ├── controlnet_scribble.json │ ├── depth_anything_v2_api.json │ ├── fbcnn_api.json │ ├── flux_fp8_api.json │ ├── flux_inpaint_alternative_api.json │ ├── flux_pulid_with_attn_mask_api.json │ ├── glif_custom_lora_flux_civitai.json │ ├── glif_custom_lora_flux_hf.json │ ├── glif_custom_lora_flux_hf_load.json │ ├── hiresfix_esrgan_workflow.json │ ├── hiresfix_latent_workflow.json │ ├── hunyuan_image_example_api.json │ ├── hunyuan_video_image_to_video_api.json │ ├── hyperSDXL_1step_unet_api.json │ ├── ic_light_api.json │ ├── instantid_default_api.json │ ├── ipadapter.json │ ├── ipadapter_faceid.json │ ├── kj_iclight_api.json │ ├── kolors_and_ipadapter_api.json │ ├── kolors_api.json │ ├── layer_diffuse_api.json │ ├── lcm_basic_example.json │ ├── loras.json │ ├── mistoline_flux_api.json │ ├── mochi_api.json │ ├── photomaker_api.json │ ├── pulid.json │ ├── pulid_flux_api.json │ ├── qwen_image_basic_example_api.json │ ├── qwen_image_edit_2509_basic_example_api.json │ ├── reactor_api.json │ ├── reactor_with_face_swap_opt_api.json │ ├── rembg_api.json │ ├── sd15_img2img.json │ ├── sd15_inpainting.json │ ├── sd15_text2img_not_api_version.json │ ├── sd15_txt2img.json │ ├── sd35l_ipadapter_api.json │ ├── sdxl_lightning_lora_api.json │ ├── sdxl_lightning_unet_api.json │ ├── sdxl_revision_text_prompts.json │ ├── sdxl_revision_zero_positive.json │ ├── sdxl_simple_example.json │ ├── sdxlturbo_example.json │ ├── segment_anything_api.json │ ├── supir_api.json │ ├── tea_cache_patch_api.json │ ├── tinyterra_BasicSDXL.json │ ├── txt_to_image_to_video.json │ ├── ultimatesdupscale_controlnet.json │ ├── upscale.json │ ├── video_matting_api.json │ ├── wan_21_13b_t2v_api.json │ ├── was_autumnal_gradient_map.json │ ├── was_bloom_workflow_api.json │ ├── was_clipseg_basic_api.json │ └── xlabs_flux_controlnet_api.json └── ui_workflows │ ├── anyline_ui.json │ ├── attention_couple_ui.json │ ├── b_lora_ui.json │ ├── bria_rmbg_ui.json │ ├── brushnet_basic_ui.json │ ├── brushnet_powerpaint_ui.json │ ├── flux_fp8_ui.json │ ├── ic_light_ui.json │ ├── instantid_default_ui.json │ ├── kj_iclight_ui.json │ ├── kolors_and_ipadapter_ui.json │ ├── kolors_ui.json │ ├── layer_diffuse_ui.json │ ├── mistoline_flux_ui.json │ ├── mochi_ui.json │ ├── photomaker_ui.json │ ├── pulid.json │ ├── reactor_ui.json │ ├── rembg_ui.json │ ├── sdxl_lightning_lora_ui.json │ ├── sdxl_lightning_unet_ui.json │ ├── segment_anything_ui.json │ ├── supir_ui.json │ ├── video_matting_ui.json │ ├── was_autumnal_gradient_map_ui.json │ ├── was_bloom_workflow_ui.json │ ├── was_clipseg_basic_ui.json │ └── xlabs_flux_controlnet_ui.json ├── node.py ├── predict.py ├── requirements.txt ├── reset.json ├── scripts ├── add_custom_node.py ├── get_weights.py ├── get_weights_completion.sh ├── install_custom_nodes.py ├── prepare_template.py ├── push_comfyui_manager_weights.py ├── push_folder.py ├── push_weights.py ├── push_weights_from_hf.py ├── reset.py ├── run_default_workflows.sh ├── sort_weights.py ├── start.sh ├── upgrade_comfyui.py └── upgrade_custom_nodes.py ├── supported_weights.md ├── train.py ├── weight_synonyms.json ├── weights.json ├── weights_downloader.py ├── weights_licenses.md └── weights_manifest.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/LICENSE -------------------------------------------------------------------------------- /MAKING_A_MODEL_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/MAKING_A_MODEL_GUIDE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/README.md -------------------------------------------------------------------------------- /cog-safe-push-configs/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/cog-safe-push-configs/default.yaml -------------------------------------------------------------------------------- /cog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/cog.yaml -------------------------------------------------------------------------------- /cog_model_helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cog_model_helpers/optimise_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/cog_model_helpers/optimise_images.py -------------------------------------------------------------------------------- /cog_model_helpers/seed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/cog_model_helpers/seed.py -------------------------------------------------------------------------------- /comfyui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/comfyui.py -------------------------------------------------------------------------------- /comfyui_enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/comfyui_enums.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/config.py -------------------------------------------------------------------------------- /custom_node_configs/comfy.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/custom_node_configs/comfy.settings.json -------------------------------------------------------------------------------- /custom_node_configs/rgthree_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/custom_node_configs/rgthree_config.json -------------------------------------------------------------------------------- /custom_node_configs/was_suite_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/custom_node_configs/was_suite_config.json -------------------------------------------------------------------------------- /custom_node_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/custom_node_helper.py -------------------------------------------------------------------------------- /custom_node_helpers/ComfyUI_Advanced_Live_Portrait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/custom_node_helpers/ComfyUI_Advanced_Live_Portrait.py -------------------------------------------------------------------------------- /custom_node_helpers/ComfyUI_Anyline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/custom_node_helpers/ComfyUI_Anyline.py -------------------------------------------------------------------------------- /custom_node_helpers/ComfyUI_BRIA_AI_RMBG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/custom_node_helpers/ComfyUI_BRIA_AI_RMBG.py -------------------------------------------------------------------------------- /custom_node_helpers/ComfyUI_BiRefNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/custom_node_helpers/ComfyUI_BiRefNet.py -------------------------------------------------------------------------------- /custom_node_helpers/ComfyUI_BrushNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/custom_node_helpers/ComfyUI_BrushNet.py -------------------------------------------------------------------------------- /custom_node_helpers/ComfyUI_Controlnet_Aux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/custom_node_helpers/ComfyUI_Controlnet_Aux.py -------------------------------------------------------------------------------- /custom_node_helpers/ComfyUI_Essentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/custom_node_helpers/ComfyUI_Essentials.py -------------------------------------------------------------------------------- /custom_node_helpers/ComfyUI_FBCNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/custom_node_helpers/ComfyUI_FBCNN.py -------------------------------------------------------------------------------- /custom_node_helpers/ComfyUI_FlashVSR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/custom_node_helpers/ComfyUI_FlashVSR.py -------------------------------------------------------------------------------- /custom_node_helpers/ComfyUI_Frame_Interpolation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/custom_node_helpers/ComfyUI_Frame_Interpolation.py -------------------------------------------------------------------------------- /custom_node_helpers/ComfyUI_IPAdapter_plus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/custom_node_helpers/ComfyUI_IPAdapter_plus.py -------------------------------------------------------------------------------- /custom_node_helpers/ComfyUI_Impact_Pack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/custom_node_helpers/ComfyUI_Impact_Pack.py -------------------------------------------------------------------------------- /custom_node_helpers/ComfyUI_InstantID.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/custom_node_helpers/ComfyUI_InstantID.py -------------------------------------------------------------------------------- /custom_node_helpers/ComfyUI_KJNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/custom_node_helpers/ComfyUI_KJNodes.py -------------------------------------------------------------------------------- /custom_node_helpers/ComfyUI_LayerDiffuse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/custom_node_helpers/ComfyUI_LayerDiffuse.py -------------------------------------------------------------------------------- /custom_node_helpers/ComfyUI_Reactor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/custom_node_helpers/ComfyUI_Reactor.py -------------------------------------------------------------------------------- /custom_node_helpers/ComfyUI_Segment_Anything.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/custom_node_helpers/ComfyUI_Segment_Anything.py -------------------------------------------------------------------------------- /custom_node_helpers/ComfyUI_Video_Matting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/custom_node_helpers/ComfyUI_Video_Matting.py -------------------------------------------------------------------------------- /custom_node_helpers/ComfyUI_tinyterraNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/custom_node_helpers/ComfyUI_tinyterraNodes.py -------------------------------------------------------------------------------- /custom_node_helpers/Misto_Controlnet_Flux_Dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/custom_node_helpers/Misto_Controlnet_Flux_Dev.py -------------------------------------------------------------------------------- /custom_node_helpers/PuLID.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/custom_node_helpers/PuLID.py -------------------------------------------------------------------------------- /custom_node_helpers/WAS_Node_Suite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/custom_node_helpers/WAS_Node_Suite.py -------------------------------------------------------------------------------- /custom_node_helpers/X_Flux_ComfyUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/custom_node_helpers/X_Flux_ComfyUI.py -------------------------------------------------------------------------------- /custom_node_helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/custom_node_helpers/__init__.py -------------------------------------------------------------------------------- /custom_node_helpers/rembg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/custom_node_helpers/rembg.py -------------------------------------------------------------------------------- /custom_nodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/custom_nodes.json -------------------------------------------------------------------------------- /example_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/example_predict.py -------------------------------------------------------------------------------- /examples/api_workflows/FlashVSR_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/FlashVSR_api.json -------------------------------------------------------------------------------- /examples/api_workflows/advanced_live_portrait_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/advanced_live_portrait_api.json -------------------------------------------------------------------------------- /examples/api_workflows/all_preprocessors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/all_preprocessors.json -------------------------------------------------------------------------------- /examples/api_workflows/animatediff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/animatediff.json -------------------------------------------------------------------------------- /examples/api_workflows/anyline_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/anyline_api.json -------------------------------------------------------------------------------- /examples/api_workflows/attention_couple_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/attention_couple_api.json -------------------------------------------------------------------------------- /examples/api_workflows/b_lora_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/b_lora_api.json -------------------------------------------------------------------------------- /examples/api_workflows/base64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/base64.json -------------------------------------------------------------------------------- /examples/api_workflows/base64_send_websocket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/base64_send_websocket.json -------------------------------------------------------------------------------- /examples/api_workflows/birefnet_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/birefnet_api.json -------------------------------------------------------------------------------- /examples/api_workflows/birefnet_ii_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/birefnet_ii_api.json -------------------------------------------------------------------------------- /examples/api_workflows/bria_rmbg_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/bria_rmbg_api.json -------------------------------------------------------------------------------- /examples/api_workflows/brushnet_basic_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/brushnet_basic_api.json -------------------------------------------------------------------------------- /examples/api_workflows/brushnet_powerpaint_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/brushnet_powerpaint_api.json -------------------------------------------------------------------------------- /examples/api_workflows/comfyui_api_node_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/comfyui_api_node_api.json -------------------------------------------------------------------------------- /examples/api_workflows/comfyui_essentials_all_workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/comfyui_essentials_all_workflows.json -------------------------------------------------------------------------------- /examples/api_workflows/controlnet_scribble.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/controlnet_scribble.json -------------------------------------------------------------------------------- /examples/api_workflows/depth_anything_v2_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/depth_anything_v2_api.json -------------------------------------------------------------------------------- /examples/api_workflows/fbcnn_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/fbcnn_api.json -------------------------------------------------------------------------------- /examples/api_workflows/flux_fp8_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/flux_fp8_api.json -------------------------------------------------------------------------------- /examples/api_workflows/flux_inpaint_alternative_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/flux_inpaint_alternative_api.json -------------------------------------------------------------------------------- /examples/api_workflows/flux_pulid_with_attn_mask_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/flux_pulid_with_attn_mask_api.json -------------------------------------------------------------------------------- /examples/api_workflows/glif_custom_lora_flux_civitai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/glif_custom_lora_flux_civitai.json -------------------------------------------------------------------------------- /examples/api_workflows/glif_custom_lora_flux_hf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/glif_custom_lora_flux_hf.json -------------------------------------------------------------------------------- /examples/api_workflows/glif_custom_lora_flux_hf_load.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/glif_custom_lora_flux_hf_load.json -------------------------------------------------------------------------------- /examples/api_workflows/hiresfix_esrgan_workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/hiresfix_esrgan_workflow.json -------------------------------------------------------------------------------- /examples/api_workflows/hiresfix_latent_workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/hiresfix_latent_workflow.json -------------------------------------------------------------------------------- /examples/api_workflows/hunyuan_image_example_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/hunyuan_image_example_api.json -------------------------------------------------------------------------------- /examples/api_workflows/hunyuan_video_image_to_video_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/hunyuan_video_image_to_video_api.json -------------------------------------------------------------------------------- /examples/api_workflows/hyperSDXL_1step_unet_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/hyperSDXL_1step_unet_api.json -------------------------------------------------------------------------------- /examples/api_workflows/ic_light_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/ic_light_api.json -------------------------------------------------------------------------------- /examples/api_workflows/instantid_default_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/instantid_default_api.json -------------------------------------------------------------------------------- /examples/api_workflows/ipadapter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/ipadapter.json -------------------------------------------------------------------------------- /examples/api_workflows/ipadapter_faceid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/ipadapter_faceid.json -------------------------------------------------------------------------------- /examples/api_workflows/kj_iclight_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/kj_iclight_api.json -------------------------------------------------------------------------------- /examples/api_workflows/kolors_and_ipadapter_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/kolors_and_ipadapter_api.json -------------------------------------------------------------------------------- /examples/api_workflows/kolors_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/kolors_api.json -------------------------------------------------------------------------------- /examples/api_workflows/layer_diffuse_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/layer_diffuse_api.json -------------------------------------------------------------------------------- /examples/api_workflows/lcm_basic_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/lcm_basic_example.json -------------------------------------------------------------------------------- /examples/api_workflows/loras.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/loras.json -------------------------------------------------------------------------------- /examples/api_workflows/mistoline_flux_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/mistoline_flux_api.json -------------------------------------------------------------------------------- /examples/api_workflows/mochi_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/mochi_api.json -------------------------------------------------------------------------------- /examples/api_workflows/photomaker_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/photomaker_api.json -------------------------------------------------------------------------------- /examples/api_workflows/pulid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/pulid.json -------------------------------------------------------------------------------- /examples/api_workflows/pulid_flux_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/pulid_flux_api.json -------------------------------------------------------------------------------- /examples/api_workflows/qwen_image_basic_example_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/qwen_image_basic_example_api.json -------------------------------------------------------------------------------- /examples/api_workflows/qwen_image_edit_2509_basic_example_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/qwen_image_edit_2509_basic_example_api.json -------------------------------------------------------------------------------- /examples/api_workflows/reactor_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/reactor_api.json -------------------------------------------------------------------------------- /examples/api_workflows/reactor_with_face_swap_opt_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/reactor_with_face_swap_opt_api.json -------------------------------------------------------------------------------- /examples/api_workflows/rembg_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/rembg_api.json -------------------------------------------------------------------------------- /examples/api_workflows/sd15_img2img.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/sd15_img2img.json -------------------------------------------------------------------------------- /examples/api_workflows/sd15_inpainting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/sd15_inpainting.json -------------------------------------------------------------------------------- /examples/api_workflows/sd15_text2img_not_api_version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/sd15_text2img_not_api_version.json -------------------------------------------------------------------------------- /examples/api_workflows/sd15_txt2img.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/sd15_txt2img.json -------------------------------------------------------------------------------- /examples/api_workflows/sd35l_ipadapter_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/sd35l_ipadapter_api.json -------------------------------------------------------------------------------- /examples/api_workflows/sdxl_lightning_lora_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/sdxl_lightning_lora_api.json -------------------------------------------------------------------------------- /examples/api_workflows/sdxl_lightning_unet_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/sdxl_lightning_unet_api.json -------------------------------------------------------------------------------- /examples/api_workflows/sdxl_revision_text_prompts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/sdxl_revision_text_prompts.json -------------------------------------------------------------------------------- /examples/api_workflows/sdxl_revision_zero_positive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/sdxl_revision_zero_positive.json -------------------------------------------------------------------------------- /examples/api_workflows/sdxl_simple_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/sdxl_simple_example.json -------------------------------------------------------------------------------- /examples/api_workflows/sdxlturbo_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/sdxlturbo_example.json -------------------------------------------------------------------------------- /examples/api_workflows/segment_anything_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/segment_anything_api.json -------------------------------------------------------------------------------- /examples/api_workflows/supir_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/supir_api.json -------------------------------------------------------------------------------- /examples/api_workflows/tea_cache_patch_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/tea_cache_patch_api.json -------------------------------------------------------------------------------- /examples/api_workflows/tinyterra_BasicSDXL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/tinyterra_BasicSDXL.json -------------------------------------------------------------------------------- /examples/api_workflows/txt_to_image_to_video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/txt_to_image_to_video.json -------------------------------------------------------------------------------- /examples/api_workflows/ultimatesdupscale_controlnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/ultimatesdupscale_controlnet.json -------------------------------------------------------------------------------- /examples/api_workflows/upscale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/upscale.json -------------------------------------------------------------------------------- /examples/api_workflows/video_matting_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/video_matting_api.json -------------------------------------------------------------------------------- /examples/api_workflows/wan_21_13b_t2v_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/wan_21_13b_t2v_api.json -------------------------------------------------------------------------------- /examples/api_workflows/was_autumnal_gradient_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/was_autumnal_gradient_map.json -------------------------------------------------------------------------------- /examples/api_workflows/was_bloom_workflow_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/was_bloom_workflow_api.json -------------------------------------------------------------------------------- /examples/api_workflows/was_clipseg_basic_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/was_clipseg_basic_api.json -------------------------------------------------------------------------------- /examples/api_workflows/xlabs_flux_controlnet_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/api_workflows/xlabs_flux_controlnet_api.json -------------------------------------------------------------------------------- /examples/ui_workflows/anyline_ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/ui_workflows/anyline_ui.json -------------------------------------------------------------------------------- /examples/ui_workflows/attention_couple_ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/ui_workflows/attention_couple_ui.json -------------------------------------------------------------------------------- /examples/ui_workflows/b_lora_ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/ui_workflows/b_lora_ui.json -------------------------------------------------------------------------------- /examples/ui_workflows/bria_rmbg_ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/ui_workflows/bria_rmbg_ui.json -------------------------------------------------------------------------------- /examples/ui_workflows/brushnet_basic_ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/ui_workflows/brushnet_basic_ui.json -------------------------------------------------------------------------------- /examples/ui_workflows/brushnet_powerpaint_ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/ui_workflows/brushnet_powerpaint_ui.json -------------------------------------------------------------------------------- /examples/ui_workflows/flux_fp8_ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/ui_workflows/flux_fp8_ui.json -------------------------------------------------------------------------------- /examples/ui_workflows/ic_light_ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/ui_workflows/ic_light_ui.json -------------------------------------------------------------------------------- /examples/ui_workflows/instantid_default_ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/ui_workflows/instantid_default_ui.json -------------------------------------------------------------------------------- /examples/ui_workflows/kj_iclight_ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/ui_workflows/kj_iclight_ui.json -------------------------------------------------------------------------------- /examples/ui_workflows/kolors_and_ipadapter_ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/ui_workflows/kolors_and_ipadapter_ui.json -------------------------------------------------------------------------------- /examples/ui_workflows/kolors_ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/ui_workflows/kolors_ui.json -------------------------------------------------------------------------------- /examples/ui_workflows/layer_diffuse_ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/ui_workflows/layer_diffuse_ui.json -------------------------------------------------------------------------------- /examples/ui_workflows/mistoline_flux_ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/ui_workflows/mistoline_flux_ui.json -------------------------------------------------------------------------------- /examples/ui_workflows/mochi_ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/ui_workflows/mochi_ui.json -------------------------------------------------------------------------------- /examples/ui_workflows/photomaker_ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/ui_workflows/photomaker_ui.json -------------------------------------------------------------------------------- /examples/ui_workflows/pulid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/ui_workflows/pulid.json -------------------------------------------------------------------------------- /examples/ui_workflows/reactor_ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/ui_workflows/reactor_ui.json -------------------------------------------------------------------------------- /examples/ui_workflows/rembg_ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/ui_workflows/rembg_ui.json -------------------------------------------------------------------------------- /examples/ui_workflows/sdxl_lightning_lora_ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/ui_workflows/sdxl_lightning_lora_ui.json -------------------------------------------------------------------------------- /examples/ui_workflows/sdxl_lightning_unet_ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/ui_workflows/sdxl_lightning_unet_ui.json -------------------------------------------------------------------------------- /examples/ui_workflows/segment_anything_ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/ui_workflows/segment_anything_ui.json -------------------------------------------------------------------------------- /examples/ui_workflows/supir_ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/ui_workflows/supir_ui.json -------------------------------------------------------------------------------- /examples/ui_workflows/video_matting_ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/ui_workflows/video_matting_ui.json -------------------------------------------------------------------------------- /examples/ui_workflows/was_autumnal_gradient_map_ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/ui_workflows/was_autumnal_gradient_map_ui.json -------------------------------------------------------------------------------- /examples/ui_workflows/was_bloom_workflow_ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/ui_workflows/was_bloom_workflow_ui.json -------------------------------------------------------------------------------- /examples/ui_workflows/was_clipseg_basic_ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/ui_workflows/was_clipseg_basic_ui.json -------------------------------------------------------------------------------- /examples/ui_workflows/xlabs_flux_controlnet_ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/examples/ui_workflows/xlabs_flux_controlnet_ui.json -------------------------------------------------------------------------------- /node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/node.py -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/predict.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/requirements.txt -------------------------------------------------------------------------------- /reset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/reset.json -------------------------------------------------------------------------------- /scripts/add_custom_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/scripts/add_custom_node.py -------------------------------------------------------------------------------- /scripts/get_weights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/scripts/get_weights.py -------------------------------------------------------------------------------- /scripts/get_weights_completion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/scripts/get_weights_completion.sh -------------------------------------------------------------------------------- /scripts/install_custom_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/scripts/install_custom_nodes.py -------------------------------------------------------------------------------- /scripts/prepare_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/scripts/prepare_template.py -------------------------------------------------------------------------------- /scripts/push_comfyui_manager_weights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/scripts/push_comfyui_manager_weights.py -------------------------------------------------------------------------------- /scripts/push_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/scripts/push_folder.py -------------------------------------------------------------------------------- /scripts/push_weights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/scripts/push_weights.py -------------------------------------------------------------------------------- /scripts/push_weights_from_hf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/scripts/push_weights_from_hf.py -------------------------------------------------------------------------------- /scripts/reset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/scripts/reset.py -------------------------------------------------------------------------------- /scripts/run_default_workflows.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/scripts/run_default_workflows.sh -------------------------------------------------------------------------------- /scripts/sort_weights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/scripts/sort_weights.py -------------------------------------------------------------------------------- /scripts/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/scripts/start.sh -------------------------------------------------------------------------------- /scripts/upgrade_comfyui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/scripts/upgrade_comfyui.py -------------------------------------------------------------------------------- /scripts/upgrade_custom_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/scripts/upgrade_custom_nodes.py -------------------------------------------------------------------------------- /supported_weights.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/supported_weights.md -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/train.py -------------------------------------------------------------------------------- /weight_synonyms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/weight_synonyms.json -------------------------------------------------------------------------------- /weights.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/weights.json -------------------------------------------------------------------------------- /weights_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/weights_downloader.py -------------------------------------------------------------------------------- /weights_licenses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/weights_licenses.md -------------------------------------------------------------------------------- /weights_manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/cog-comfyui/HEAD/weights_manifest.py --------------------------------------------------------------------------------