
This ComfyUI workflow, titled '1.1 Starter - Text to Image,' is designed to introduce users to the basics of generating images from text prompts. It leverages the Z-Image Turbo model, known for its efficiency and quality in rendering detailed images from textual descriptions. The workflow includes key nodes such as the 932f407c-4ab6-4cd4-8567-d338b0eb6e18 for processing the text input and generating the image, a MarkdownNote for adding annotations or instructions, and a SaveImage node for saving the final output. By connecting these nodes, users can seamlessly transform text into a visual representation and download the results directly from the interface.
Technically, the workflow operates by taking a text input, processing it through the Z-Image Turbo model, and producing an image that reflects the input description. The MarkdownNote node allows users to add context or instructions within the workflow, enhancing usability and understanding. The SaveImage node is crucial for exporting the generated image, making it easy for users to download and utilize the output. This workflow is particularly useful for beginners looking to explore AI-driven image generation, offering a straightforward and intuitive process to create and save images based on text prompts.
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/96f9694b12c4.jsonFetching 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 this workflow (Python)
from comfy_sdk import Comfy
client = Comfy(api_key="comfyui-...")
wf = client.workflows.from_file("workflow_api.json")
job = client.run(wf)
for output in job.get_outputs("<output-node-id>"):
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














