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
| Field | Value |
|---|---|
| Model ID | vidu-t2i-viduq2 |
| CLI | dlazy viduq2-t2i |
| MCP | viduq2-t2i (Claude Code surfaces this as mcp__dlazy__viduq2-t2i) |
| Type | image |
| Execution | Async task; the CLI polls until completion (--no-wait returns generateId immediately) |
| Batch | Supports --batch <n> parallel fan-out |
Parameters
| Arg | Type | Required | Notes |
|---|---|---|---|
prompt | string | Yes | Prompt |
generation_mode | "components" | No | Generation Mode; default "components" |
images | array<url> | No | Images; 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" | No | Aspect Ratio; default "9:16" |
resolution | "1080p" | "2K" | "4K" | No | Resolution; default "1080p" |
--input @file.jsonor--input '{...}'can supply all args at once; flags take precedence over--inputkeys.
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 4Compose 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.