
The 'Chroma1 Radiance Text to Image' workflow is designed to enhance image generation by working directly with image pixels rather than relying on compressed latents. This approach significantly improves the quality of generated images, reducing artifacts and distortion commonly associated with latent-based methods. The workflow utilizes the Chroma model, known for its ability to handle high-resolution image data effectively. By employing nodes such as SaveImage and MarkdownNote, users can seamlessly generate and save high-quality images while integrating informative notes within their workflow. The unique node '107cc5d5-a32e-4420-96ef-83996f29ac4c' plays a crucial role in processing and refining the image outputs, ensuring that the final results meet high standards of visual fidelity.
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 "Chroma1 Radiance Text to Image" (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_chroma1_radiance_text_to_image_api.json");
const job = await client.run(wf);
await job.getOutputs("740")[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













