ACE-Step 1.5 Music Generation AIO is a text-to-audio ComfyUI workflow that turns style tags and lyrics into a complete song. You provide short descriptors like "modern pop, female vocal, lush synths" plus your lyrics, and the graph handles the rest—sampling, decoding, and exporting MP3—so you can audition ideas in seconds on consumer hardware. It’s organized into clear groups—Step 1: Load Model, Step 2: Duration, Step 3: Prompt—so you always know where to set the checkpoint, how long the track should be, and what the model should sing or sound like.
Under the hood, CheckpointLoaderSimple loads the ACE-Step 1.5 checkpoint (ace_step_1.5_turbo_aio.safetensors). TextEncodeAceStepAudio1.5 converts your style tags and lyrics into ACE-specific conditioning vectors. ConditioningZeroOut is used to cleanly disable unused conditioning channels (for example, when you’re not providing a secondary or negative prompt), preventing unintended bias. EmptyAceStep1.5LatentAudio creates an empty latent audio canvas for the exact duration you request. ModelSamplingAuraFlow configures the correct sampler/scheduler combination for ACE-Step 1.5, and KSampler iteratively refines the latent into a coherent track based on your prompt. VAEDecodeAudio turns the final latent into waveform audio, and SaveAudioMP3 writes the result to your ComfyUI output folder. PrimitiveNode widgets expose practical knobs like steps, CFG, seed, and seconds so you can tweak speed, quality, and reproducibility.
This setup is useful for fast songwriting demos, genre exploration, and content beds. You get precise control over duration and a repeatable workflow via the seed. The graph ships with sensible defaults so you can generate a short track quickly, then dial in higher quality by raising steps or refining style tags and lyric phrasing.
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 "ACE-Step 1.5 Music Generation AIO" (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("audio_ace_step_1_5_checkpoint_api.json");
const job = await client.run(wf);
await job.getOutputs("104")[0].toFile("output.png"); // SaveAudioMP3The 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













