
Unleash your creativity with the SD3.5 Simple workflow, a powerful tool for generating stunning images using the latest in AI technology. At the core of this workflow is the SD3.5 model, renowned for its ability to produce images with remarkable detail and vibrant colors. Combined with the Stability model, this setup ensures that your generated images are not only visually captivating but also stable and coherent across different contexts. Whether you're crafting fantastical landscapes or intricate still lifes, the SD3.5 Simple workflow provides a versatile canvas for your imagination.
This workflow employs a series of specialized nodes, including the KSampler for fine-tuning image textures, the CheckpointLoaderSimple for loading precise model checkpoints, and the VAEDecode for decoding latent variables into high-resolution images. The CLIPTextEncode node allows for nuanced interpretation of text prompts, enabling highly customizable and contextually rich outputs. By leveraging these advanced techniques, users can effortlessly transform simple text descriptions into complex visual narratives, making it an ideal choice for artists, designers, and creative professionals seeking to push the boundaries of digital art.
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 "SD3.5 Simple" (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("sd3.5_simple_example_api.json");
wf.setInput("16", "text", "your prompt here"); // CLIPTextEncode
const job = await client.run(wf);
await job.getOutputs("9")[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













