
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
從程式碼使用此工作流
每個 Comfy 工作流都是一個 JSON 圖。下方的 payload 就是此工作流,與 ComfyUI 執行時完全相同 — 你可以從此 URL 取得、放入版本控制,或在 ComfyUI 載入並逐節點執行。
使用 Comfy SDK 以 TypeScript 或 Python 執行。相同程式碼可用於 Comfy Cloud 或你自架的 ComfyUI — 只需更改 base URL。
// Install (beta)
npm i @comfyorg/sdk
// Run "SD3.5簡單版" (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"); // SaveImageSDK 需使用 API 格式的工作流:請在 ComfyUI 開啟此工作流,並使用 檔案 → 匯出工作流(API)。
常見問題













