The ChronoEdit 14B workflow is designed to provide advanced image editing capabilities by leveraging the dynamic understanding of video models. This workflow utilizes models like Wan2.1, ChronoEdit, and Nvidia to ensure that edits are not only physically plausible but also maintain character and style consistency across the images. The core of this workflow is its ability to interpret images in a manner similar to how video frames are processed, allowing for more coherent and context-aware modifications.
Technically, the workflow employs a series of nodes, including LoadImage and SaveImage, to manage the input and output of images. The unique nodes, identified by their IDs such as 813daba6-ec1d-42dd-87bc-4f0f6e084a8d and 2b61e18f-9327-49e6-98af-da8e557c2336, are crucial for processing and applying the dynamic edits. These nodes work in conjunction to analyze the image's context and apply edits that are consistent with the overall style and character of the image. This makes the workflow particularly useful for tasks that require maintaining a coherent visual narrative, such as in character design or storyboard development.
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.
Run it from TypeScript or Python with the Comfy SDK. The same code targets Comfy Cloud or a ComfyUI you host yourself — only the base URL changes.
// Install (beta)
npm i @comfyorg/sdk
// Run "ChronoEdit 14B" (TypeScript)
import { Comfy } from "@comfyorg/sdk";
const client = new Comfy({ apiKey: "comfyui-..." });
// This workflow, exported in API format (see note below)
const wf = await client.workflows.fromFile("image_chrono_edit_14B_api.json");
const asset = client.assets.fromFile("input.png");
wf.setInput("52", "image", asset); // LoadImage
const job = await client.run(wf);
await job.getOutputs("60")[0].toFile("output.png"); // SaveImageThe SDK takes a workflow in API format: open this workflow in ComfyUI and use File → Export Workflow (API).
Comfy Cloud API access requires a plan with an API key.
FAQ















