dLazy AIdLazy AI
Model ReferenceImage Models

viduq2-t2i

Vidu image model with text + reference image, ratio, and resolution control. Good for character art, covers, and high-res output.

Vidu image model with text + reference image, ratio, and resolution control. Good for character art, covers, and high-res output.

Overview

FieldValue
Model IDvidu-t2i-viduq2
CLIdlazy viduq2-t2i
MCPviduq2-t2i (Claude Code surfaces this as mcp__dlazy__viduq2-t2i)
Typeimage
ExecutionAsync task; the CLI polls until completion (--no-wait returns generateId immediately)
BatchSupports --batch <n> parallel fan-out

Parameters

ArgTypeRequiredNotes
promptstringYesPrompt
generation_mode"components"NoGeneration Mode; default "components"
imagesarray<url>NoImages; image (accepts URL, local path, or data: URL); max 10 items
aspectRatio"16:9" | "9:16" | "1:1" | "3:4" | "4:3" | "21:9" | "2:3" | "3:2"NoAspect Ratio; default "9:16"
resolution"1080p" | "2K" | "4K"NoResolution; default "1080p"

--input @file.json or --input '{...}' can supply all args at once; flags take precedence over --input keys.

CLI Examples

dlazy viduq2-t2i --help
dlazy viduq2-t2i --prompt "Write your prompt here" --images "https://example.com/reference1.jpg" "https://example.com/reference2.jpg"
dlazy viduq2-t2i --prompt "Write your prompt here" --images "./local-image.png"
dlazy viduq2-t2i --prompt "Write your prompt here" --images "https://example.com/reference1.jpg" "https://example.com/reference2.jpg" --dry-run
dlazy viduq2-t2i --prompt "Write your prompt here" --images "https://example.com/reference1.jpg" "https://example.com/reference2.jpg" --no-wait
dlazy viduq2-t2i --prompt "Write your prompt here" --images "https://example.com/reference1.jpg" "https://example.com/reference2.jpg" --batch 4

Compose with a pipeline

dlazy gpt-image-2 --prompt "reference visual" \
  | dlazy viduq2-t2i --images - --prompt "Write your prompt here"

MCP

MCP is consumed by AI clients, not handwritten. Once dLazy is registered as an MCP server the tool appears in the client's tool list — Claude Code surfaces it as mcp__dlazy__viduq2-t2i; generic clients (e.g. OpenClaw) call it as viduq2-t2i.

See MCP setup for how to add the server.

Output

{
  "outputs": [
    { "type": "image", "id": "o_...", "url": "https://files.dlazy.com/result.png", "mimeType": "image/png" }
  ]
}

Media tools emit image / video / audio / file outputs. Use --output url to print only the URLs on stdout.

On this page