AI on the Lot 2026 - Final WF - t2v is a complete text-to-video pipeline that stitches together prompt design, image synthesis, and video assembly inside ComfyUI. It uses AILab_QwenVL and AILab_QwenVL_PromptEnhancer to turn a simple idea into a rich, structured prompt. From there, the workflow generates high-quality keyframes with the image synthesis stage (node ID e9d2dda8-2509-4d8d-9702-a9bf00c26650), previews results with PreviewAny, and then builds a cohesive video clip in the video stage (node ID 99c27236-513e-427c-9ed4-49406365f0d3). SaveImage and SaveVideo provide clean, reproducible exports at each stage.
Technically, the flow is: your base text prompt (and optionally a reference image) goes into AILab_QwenVL to extract and enrich scene details. AILab_QwenVL_PromptEnhancer refines the text into a model-friendly prompt with clearer subjects, styles, and shot descriptors. That prompt feeds the image generator node (e9d2dda8-2509-4d8d-9702-a9bf00c26650) to produce one or more seed-controlled keyframes at your chosen resolution. Those frames are then passed to the video node (99c27236-513e-427c-9ed4-49406365f0d3), which synthesizes a clip based on duration and motion/consistency settings. PreviewAny helps you iterate quickly, while SaveImage and SaveVideo lock in stills or a final video once you’re happy. Because the stages are modular, you can use it for text-to-image only, image-to-video only, or end-to-end text-to-video with the same graph.
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/3eb92c1b2380.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














