FireRed Image Edit 1.1: Image Edit - After
FireRed Image Edit 1.1: Image Edit - Before

The FireRed Image Edit 1.1 workflow is designed to enhance and modify images by incorporating advanced AI techniques for identity consistency, multi-element fusion, and professional photo restoration. Utilizing the FireRed Image Edit 1.1 model, this workflow allows users to upload an image alongside a text prompt to guide the editing process. Key nodes in this workflow include LoadImage for importing your image, and SaveImage for exporting the edited result. The unique node identified by the ID 4e4e025b-dcef-4cf9-a96b-cc11a46c1ab2 plays a crucial role in processing the image with the specified model, ensuring that the output maintains high quality and adheres closely to the input prompt.

Technically, the workflow leverages a combination of VAE (Variational Autoencoder) and advanced text encoders to interpret and apply the text prompt effectively. The qwen_image_vae.safetensors file is essential for the VAE component, allowing for nuanced image transformations, while the qwen_2.5_vl_7b_fp8_scaled.safetensors text encoder interprets the textual input to guide the image editing. This setup is particularly useful for users seeking to perform detailed edits without sacrificing the original image's identity, making it ideal for tasks ranging from simple enhancements to complex artistic renderings.

API

Use this workflow from code

Every Comfy workflow is a JSON graph. The payload below is this workflow, exactly as ComfyUI runs it — fetch it from the URL, keep it in version control, or load it in ComfyUI and run it node by node.

GET https://comfy.org/workflows/download/c0198b907108.json
Fetching workflow JSON…

Run it from Python or TypeScript with the Comfy SDK. The same code targets Comfy Cloud or a ComfyUI you host yourself — only the base URL changes.

# Install (beta)
pip install comfy-sdk        # Python
npm i @comfyorg/sdk          # TypeScript

# Run "FireRed Image Edit 1.1: Image Edit" (Python)
from comfy_sdk import Comfy

client = Comfy(api_key="comfyui-...")

# This workflow, exported in API format (see note below)
wf = client.workflows.from_file("image_firered_image_edit1_1_api.json")

asset = client.assets.from_file("input.png")
wf.set_input("143", "image", asset)  # LoadImage

job = client.run(wf)
for output in job.get_outputs("9"):  # SaveImage
    output.to_file(output.name)

The SDK takes a workflow in API format: open this workflow in ComfyUI and use File → Export Workflow (API). API access requires a Comfy Cloud plan with an API key. SDK docs · Get an API key

FAQ

Frequently Asked Questions

View all workflows
Character
Cinematic
Image to Video
Lip Sync
Multiple Angles
Portrait
Style Reference
Style Transfer
Text to Video
Video Generation
Video
Showing 30 of 30 templates