Seedream 5.0 Pro: Text to Image

This workflow turns your text prompt into a single, high-quality image using ByteDance’s Seedream 5.0 Pro model, wrapped by the ByteDanceSeedreamNodeV2. You type your prompt, optionally set a seed and resolution, and the node makes an API call to Seedream 5.0 Pro to generate one image. The result is then passed to SaveImageAdvanced, which writes the output to disk with your chosen filename pattern and folder.

Technically, ByteDanceSeedreamNodeV2 handles prompt text and common generation controls such as seed (for reproducibility) and image size (width/height supported by the API). Many versions of this node also expose guidance (CFG) and steps; if available in your build, you can fine-tune detail and prompt adherence. The node returns the generated image tensor, which SaveImageAdvanced persists according to your output directory and naming settings. This design keeps the graph minimal and focused: one model call for a clean, single-image result, ideal for fast iteration on concept art, mockups, and design ideation.

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.

a262dd6de9ce.json
Fetching workflow JSON…

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 this workflow (TypeScript)
import { Comfy } from "@comfyorg/sdk";

const client = new Comfy({ apiKey: "comfyui-..." });
const wf = await client.workflows.fromFile("workflow_api.json");
const job = await client.run(wf);
await job.getOutputs("<output-node-id>")[0].toFile("output.png");

The 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

Frequently Asked Questions

View all workflows
Showing 30 of 30 templates