├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── assets ├── image-inference.png └── video-inference.png ├── clientlibs ├── main.js ├── types.js └── utils.js ├── modules ├── acceleratorOptions.py ├── apiManager.py ├── audioInference.py ├── audioInferenceInputs.py ├── audioModelSearch.py ├── audioSections.py ├── bgremoval.py ├── bridges │ └── mainRoute.py ├── controlNet.py ├── controlNetCombine.py ├── controlNetPreprocessor.py ├── embeddingSearch.py ├── embeddingsCombine.py ├── frameImages.py ├── imageCaptioning.py ├── imageInference.py ├── imageInferenceInputs.py ├── imageMasking.py ├── inputAudios.py ├── ipAdapter.py ├── ipAdapterCombine.py ├── loraCombine.py ├── loraSearch.py ├── mediaUpload.py ├── modelSearch.py ├── multiInference.py ├── outpaintSettings.py ├── photoMaker.py ├── providerSettings │ ├── __init__.py │ ├── alibabaProviderSettings.py │ ├── briaImageProviderSettings.py │ ├── bytedanceImageProviderSettings.py │ ├── elevenlabsProviderSettings.py │ ├── elevenlabsProviderSettingsSections.py │ ├── klingProviderSettings.py │ ├── lightricksProviderSettings.py │ ├── lumaProviderSettings.py │ ├── midjourneyProviderSettings.py │ ├── minimaxProviderSettings.py │ ├── openaiProviderSettings.py │ ├── pixverseProviderSettings.py │ ├── runwayProviderSettings.py │ └── viduProviderSettings.py ├── referenceImages.py ├── referenceVideos.py ├── refiner.py ├── runwareBFL.py ├── runwareImagen.py ├── safetyInputs.py ├── upscaler.py ├── utils │ └── runwareUtils.py ├── vaeSearch.py ├── vectorize.py ├── videoAdvancedFeatureInputs.py ├── videoBgRemoval.py ├── videoInference.py ├── videoInferenceInputs.py ├── videoInputsFrame.py ├── videoInputsReferences.py ├── videoModelSearch.py ├── videoTranscription.py └── videoUpscaler.py ├── requirements.txt └── workflows ├── Runware_Adetailer.json ├── Runware_Audio_Inference.json ├── Runware_Audio_Inference_Elevanlabs_Provider_Settings.json ├── Runware_Audio_Inference_Kling.json ├── Runware_Basic_Background_Removal.json ├── Runware_Basic_Image_Inference.json ├── Runware_Basic_Image_Inference_ Updated 9h ago sirshendu.ganguly_Z-Image-Turbo.json ├── Runware_Basic_Image_Inference_Hunyuan.json ├── Runware_Basic_Image_Inference_IPAdapter.json ├── Runware_Basic_Image_Inference_ImagineArt.json ├── Runware_Basic_Image_Inference_Kling_Omni_Image.json ├── Runware_Basic_Image_Inference_Lora.json ├── Runware_Basic_Image_Inference_Midjourney_I2V.json ├── Runware_Basic_Image_Inference_NanoBanana2.json ├── Runware_Basic_Image_Inference_Ponyv7.json ├── Runware_Basic_Image_Inference_Runway_Gen_4.json ├── Runware_Basic_Image_Upscaling.json ├── Runware_ControlNet.json ├── Runware_Image_Inference_ seedream_v4_5.json ├── Runware_Image_Inference_Bria_Fibo.json ├── Runware_Image_Inference_Bria_ReplaceBackground.json ├── Runware_Image_Inference_Captioning.json ├── Runware_Image_Inference_Embedding.json ├── Runware_Image_Inference_FLUX2.json ├── Runware_Image_Inference_FLUX2_Open_Source.json ├── Runware_Image_Inference_Pruna_Image.json ├── Runware_Image_Inference_Refiner.json ├── Runware_Image_Inference_Riverflow2.json ├── Runware_Image_Inference_VAE.json ├── Runware_Image_Provider_Settings_Bytedance.json ├── Runware_Image_to_Video.json ├── Runware_Image_to_Video_Kling2.5.json ├── Runware_Image_to_Video_Kling_Omni_Video.json ├── Runware_Image_to_Video_Ovi.json ├── Runware_Image_to_Video_Pixverse.json ├── Runware_Image_to_Video_Pixverse_v5.5.json ├── Runware_Inpainting.json ├── Runware_Media_Upload.json ├── Runware_Multi_Inference.json ├── Runware_Outpainting.json ├── Runware_PhotoMaker_v2.json ├── Runware_Text_To_Video.json.json ├── Runware_Vectorize.json ├── Runware_VideoInference_LTX-Retake.json ├── Runware_VideoInference_LTX.json ├── Runware_Video_Age_Detection.json ├── Runware_Video_Background_Removal.json ├── Runware_Video_Inference_Kling.json ├── Runware_Video_Inference_Luma.json ├── Runware_Video_Inference_Minimax_Provider_Settings.json ├── Runware_Video_Inference_Omnihuman1_5.json ├── Runware_Video_Inference_PixverseLipSync.json ├── Runware_Video_Inference_PixverseLipSyncSpeech.json ├── Runware_Video_Inference_Runway_Aleph.json ├── Runware_Video_Inference_Runway_Gen4_Turbo.json ├── Runware_Video_Inference_Veo3_1.json ├── Runware_Video_Inference_Veo3_1_FrameImages.json ├── Runware_Video_Inference_Wan2_2_Last_Frame.json ├── Runware_Video_Transcription.json ├── Runware_Video_Upscale.json └── Runware_Vidu_Video_Template.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/__init__.py -------------------------------------------------------------------------------- /assets/image-inference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/assets/image-inference.png -------------------------------------------------------------------------------- /assets/video-inference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/assets/video-inference.png -------------------------------------------------------------------------------- /clientlibs/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/clientlibs/main.js -------------------------------------------------------------------------------- /clientlibs/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/clientlibs/types.js -------------------------------------------------------------------------------- /clientlibs/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/clientlibs/utils.js -------------------------------------------------------------------------------- /modules/acceleratorOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/acceleratorOptions.py -------------------------------------------------------------------------------- /modules/apiManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/apiManager.py -------------------------------------------------------------------------------- /modules/audioInference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/audioInference.py -------------------------------------------------------------------------------- /modules/audioInferenceInputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/audioInferenceInputs.py -------------------------------------------------------------------------------- /modules/audioModelSearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/audioModelSearch.py -------------------------------------------------------------------------------- /modules/audioSections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/audioSections.py -------------------------------------------------------------------------------- /modules/bgremoval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/bgremoval.py -------------------------------------------------------------------------------- /modules/bridges/mainRoute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/bridges/mainRoute.py -------------------------------------------------------------------------------- /modules/controlNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/controlNet.py -------------------------------------------------------------------------------- /modules/controlNetCombine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/controlNetCombine.py -------------------------------------------------------------------------------- /modules/controlNetPreprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/controlNetPreprocessor.py -------------------------------------------------------------------------------- /modules/embeddingSearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/embeddingSearch.py -------------------------------------------------------------------------------- /modules/embeddingsCombine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/embeddingsCombine.py -------------------------------------------------------------------------------- /modules/frameImages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/frameImages.py -------------------------------------------------------------------------------- /modules/imageCaptioning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/imageCaptioning.py -------------------------------------------------------------------------------- /modules/imageInference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/imageInference.py -------------------------------------------------------------------------------- /modules/imageInferenceInputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/imageInferenceInputs.py -------------------------------------------------------------------------------- /modules/imageMasking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/imageMasking.py -------------------------------------------------------------------------------- /modules/inputAudios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/inputAudios.py -------------------------------------------------------------------------------- /modules/ipAdapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/ipAdapter.py -------------------------------------------------------------------------------- /modules/ipAdapterCombine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/ipAdapterCombine.py -------------------------------------------------------------------------------- /modules/loraCombine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/loraCombine.py -------------------------------------------------------------------------------- /modules/loraSearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/loraSearch.py -------------------------------------------------------------------------------- /modules/mediaUpload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/mediaUpload.py -------------------------------------------------------------------------------- /modules/modelSearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/modelSearch.py -------------------------------------------------------------------------------- /modules/multiInference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/multiInference.py -------------------------------------------------------------------------------- /modules/outpaintSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/outpaintSettings.py -------------------------------------------------------------------------------- /modules/photoMaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/photoMaker.py -------------------------------------------------------------------------------- /modules/providerSettings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/providerSettings/__init__.py -------------------------------------------------------------------------------- /modules/providerSettings/alibabaProviderSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/providerSettings/alibabaProviderSettings.py -------------------------------------------------------------------------------- /modules/providerSettings/briaImageProviderSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/providerSettings/briaImageProviderSettings.py -------------------------------------------------------------------------------- /modules/providerSettings/bytedanceImageProviderSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/providerSettings/bytedanceImageProviderSettings.py -------------------------------------------------------------------------------- /modules/providerSettings/elevenlabsProviderSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/providerSettings/elevenlabsProviderSettings.py -------------------------------------------------------------------------------- /modules/providerSettings/elevenlabsProviderSettingsSections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/providerSettings/elevenlabsProviderSettingsSections.py -------------------------------------------------------------------------------- /modules/providerSettings/klingProviderSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/providerSettings/klingProviderSettings.py -------------------------------------------------------------------------------- /modules/providerSettings/lightricksProviderSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/providerSettings/lightricksProviderSettings.py -------------------------------------------------------------------------------- /modules/providerSettings/lumaProviderSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/providerSettings/lumaProviderSettings.py -------------------------------------------------------------------------------- /modules/providerSettings/midjourneyProviderSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/providerSettings/midjourneyProviderSettings.py -------------------------------------------------------------------------------- /modules/providerSettings/minimaxProviderSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/providerSettings/minimaxProviderSettings.py -------------------------------------------------------------------------------- /modules/providerSettings/openaiProviderSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/providerSettings/openaiProviderSettings.py -------------------------------------------------------------------------------- /modules/providerSettings/pixverseProviderSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/providerSettings/pixverseProviderSettings.py -------------------------------------------------------------------------------- /modules/providerSettings/runwayProviderSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/providerSettings/runwayProviderSettings.py -------------------------------------------------------------------------------- /modules/providerSettings/viduProviderSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/providerSettings/viduProviderSettings.py -------------------------------------------------------------------------------- /modules/referenceImages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/referenceImages.py -------------------------------------------------------------------------------- /modules/referenceVideos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/referenceVideos.py -------------------------------------------------------------------------------- /modules/refiner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/refiner.py -------------------------------------------------------------------------------- /modules/runwareBFL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/runwareBFL.py -------------------------------------------------------------------------------- /modules/runwareImagen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/runwareImagen.py -------------------------------------------------------------------------------- /modules/safetyInputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/safetyInputs.py -------------------------------------------------------------------------------- /modules/upscaler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/upscaler.py -------------------------------------------------------------------------------- /modules/utils/runwareUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/utils/runwareUtils.py -------------------------------------------------------------------------------- /modules/vaeSearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/vaeSearch.py -------------------------------------------------------------------------------- /modules/vectorize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/vectorize.py -------------------------------------------------------------------------------- /modules/videoAdvancedFeatureInputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/videoAdvancedFeatureInputs.py -------------------------------------------------------------------------------- /modules/videoBgRemoval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/videoBgRemoval.py -------------------------------------------------------------------------------- /modules/videoInference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/videoInference.py -------------------------------------------------------------------------------- /modules/videoInferenceInputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/videoInferenceInputs.py -------------------------------------------------------------------------------- /modules/videoInputsFrame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/videoInputsFrame.py -------------------------------------------------------------------------------- /modules/videoInputsReferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/videoInputsReferences.py -------------------------------------------------------------------------------- /modules/videoModelSearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/videoModelSearch.py -------------------------------------------------------------------------------- /modules/videoTranscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/videoTranscription.py -------------------------------------------------------------------------------- /modules/videoUpscaler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/modules/videoUpscaler.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | python-dotenv 2 | brotli 3 | zstd 4 | librosa -------------------------------------------------------------------------------- /workflows/Runware_Adetailer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Adetailer.json -------------------------------------------------------------------------------- /workflows/Runware_Audio_Inference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Audio_Inference.json -------------------------------------------------------------------------------- /workflows/Runware_Audio_Inference_Elevanlabs_Provider_Settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Audio_Inference_Elevanlabs_Provider_Settings.json -------------------------------------------------------------------------------- /workflows/Runware_Audio_Inference_Kling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Audio_Inference_Kling.json -------------------------------------------------------------------------------- /workflows/Runware_Basic_Background_Removal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Basic_Background_Removal.json -------------------------------------------------------------------------------- /workflows/Runware_Basic_Image_Inference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Basic_Image_Inference.json -------------------------------------------------------------------------------- /workflows/Runware_Basic_Image_Inference_ Updated 9h ago sirshendu.ganguly_Z-Image-Turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Basic_Image_Inference_ Updated 9h ago sirshendu.ganguly_Z-Image-Turbo.json -------------------------------------------------------------------------------- /workflows/Runware_Basic_Image_Inference_Hunyuan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Basic_Image_Inference_Hunyuan.json -------------------------------------------------------------------------------- /workflows/Runware_Basic_Image_Inference_IPAdapter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Basic_Image_Inference_IPAdapter.json -------------------------------------------------------------------------------- /workflows/Runware_Basic_Image_Inference_ImagineArt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Basic_Image_Inference_ImagineArt.json -------------------------------------------------------------------------------- /workflows/Runware_Basic_Image_Inference_Kling_Omni_Image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Basic_Image_Inference_Kling_Omni_Image.json -------------------------------------------------------------------------------- /workflows/Runware_Basic_Image_Inference_Lora.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Basic_Image_Inference_Lora.json -------------------------------------------------------------------------------- /workflows/Runware_Basic_Image_Inference_Midjourney_I2V.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Basic_Image_Inference_Midjourney_I2V.json -------------------------------------------------------------------------------- /workflows/Runware_Basic_Image_Inference_NanoBanana2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Basic_Image_Inference_NanoBanana2.json -------------------------------------------------------------------------------- /workflows/Runware_Basic_Image_Inference_Ponyv7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Basic_Image_Inference_Ponyv7.json -------------------------------------------------------------------------------- /workflows/Runware_Basic_Image_Inference_Runway_Gen_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Basic_Image_Inference_Runway_Gen_4.json -------------------------------------------------------------------------------- /workflows/Runware_Basic_Image_Upscaling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Basic_Image_Upscaling.json -------------------------------------------------------------------------------- /workflows/Runware_ControlNet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_ControlNet.json -------------------------------------------------------------------------------- /workflows/Runware_Image_Inference_ seedream_v4_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Image_Inference_ seedream_v4_5.json -------------------------------------------------------------------------------- /workflows/Runware_Image_Inference_Bria_Fibo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Image_Inference_Bria_Fibo.json -------------------------------------------------------------------------------- /workflows/Runware_Image_Inference_Bria_ReplaceBackground.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Image_Inference_Bria_ReplaceBackground.json -------------------------------------------------------------------------------- /workflows/Runware_Image_Inference_Captioning.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Image_Inference_Captioning.json -------------------------------------------------------------------------------- /workflows/Runware_Image_Inference_Embedding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Image_Inference_Embedding.json -------------------------------------------------------------------------------- /workflows/Runware_Image_Inference_FLUX2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Image_Inference_FLUX2.json -------------------------------------------------------------------------------- /workflows/Runware_Image_Inference_FLUX2_Open_Source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Image_Inference_FLUX2_Open_Source.json -------------------------------------------------------------------------------- /workflows/Runware_Image_Inference_Pruna_Image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Image_Inference_Pruna_Image.json -------------------------------------------------------------------------------- /workflows/Runware_Image_Inference_Refiner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Image_Inference_Refiner.json -------------------------------------------------------------------------------- /workflows/Runware_Image_Inference_Riverflow2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Image_Inference_Riverflow2.json -------------------------------------------------------------------------------- /workflows/Runware_Image_Inference_VAE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Image_Inference_VAE.json -------------------------------------------------------------------------------- /workflows/Runware_Image_Provider_Settings_Bytedance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Image_Provider_Settings_Bytedance.json -------------------------------------------------------------------------------- /workflows/Runware_Image_to_Video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Image_to_Video.json -------------------------------------------------------------------------------- /workflows/Runware_Image_to_Video_Kling2.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Image_to_Video_Kling2.5.json -------------------------------------------------------------------------------- /workflows/Runware_Image_to_Video_Kling_Omni_Video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Image_to_Video_Kling_Omni_Video.json -------------------------------------------------------------------------------- /workflows/Runware_Image_to_Video_Ovi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Image_to_Video_Ovi.json -------------------------------------------------------------------------------- /workflows/Runware_Image_to_Video_Pixverse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Image_to_Video_Pixverse.json -------------------------------------------------------------------------------- /workflows/Runware_Image_to_Video_Pixverse_v5.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Image_to_Video_Pixverse_v5.5.json -------------------------------------------------------------------------------- /workflows/Runware_Inpainting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Inpainting.json -------------------------------------------------------------------------------- /workflows/Runware_Media_Upload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Media_Upload.json -------------------------------------------------------------------------------- /workflows/Runware_Multi_Inference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Multi_Inference.json -------------------------------------------------------------------------------- /workflows/Runware_Outpainting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Outpainting.json -------------------------------------------------------------------------------- /workflows/Runware_PhotoMaker_v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_PhotoMaker_v2.json -------------------------------------------------------------------------------- /workflows/Runware_Text_To_Video.json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Text_To_Video.json.json -------------------------------------------------------------------------------- /workflows/Runware_Vectorize.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Vectorize.json -------------------------------------------------------------------------------- /workflows/Runware_VideoInference_LTX-Retake.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_VideoInference_LTX-Retake.json -------------------------------------------------------------------------------- /workflows/Runware_VideoInference_LTX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_VideoInference_LTX.json -------------------------------------------------------------------------------- /workflows/Runware_Video_Age_Detection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Video_Age_Detection.json -------------------------------------------------------------------------------- /workflows/Runware_Video_Background_Removal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Video_Background_Removal.json -------------------------------------------------------------------------------- /workflows/Runware_Video_Inference_Kling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Video_Inference_Kling.json -------------------------------------------------------------------------------- /workflows/Runware_Video_Inference_Luma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Video_Inference_Luma.json -------------------------------------------------------------------------------- /workflows/Runware_Video_Inference_Minimax_Provider_Settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Video_Inference_Minimax_Provider_Settings.json -------------------------------------------------------------------------------- /workflows/Runware_Video_Inference_Omnihuman1_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Video_Inference_Omnihuman1_5.json -------------------------------------------------------------------------------- /workflows/Runware_Video_Inference_PixverseLipSync.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Video_Inference_PixverseLipSync.json -------------------------------------------------------------------------------- /workflows/Runware_Video_Inference_PixverseLipSyncSpeech.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Video_Inference_PixverseLipSyncSpeech.json -------------------------------------------------------------------------------- /workflows/Runware_Video_Inference_Runway_Aleph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Video_Inference_Runway_Aleph.json -------------------------------------------------------------------------------- /workflows/Runware_Video_Inference_Runway_Gen4_Turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Video_Inference_Runway_Gen4_Turbo.json -------------------------------------------------------------------------------- /workflows/Runware_Video_Inference_Veo3_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Video_Inference_Veo3_1.json -------------------------------------------------------------------------------- /workflows/Runware_Video_Inference_Veo3_1_FrameImages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Video_Inference_Veo3_1_FrameImages.json -------------------------------------------------------------------------------- /workflows/Runware_Video_Inference_Wan2_2_Last_Frame.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Video_Inference_Wan2_2_Last_Frame.json -------------------------------------------------------------------------------- /workflows/Runware_Video_Transcription.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Video_Transcription.json -------------------------------------------------------------------------------- /workflows/Runware_Video_Upscale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Video_Upscale.json -------------------------------------------------------------------------------- /workflows/Runware_Vidu_Video_Template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runware/ComfyUI-Runware/HEAD/workflows/Runware_Vidu_Video_Template.json --------------------------------------------------------------------------------