dLazy AIdLazy AI
Model ReferenceImage Models

kling-image-o1

Kling image model, supports '<image_1>' placeholder in prompt for reference image binding. Suitable for multi-image constraints and high-fidelity generation.

Kling image model, supports '<image_1>' placeholder in prompt for reference image binding. Suitable for multi-image constraints and high-fidelity generation.

Overview

FieldValue
Model IDkling-image-o1
CLIdlazy kling-image-o1
MCPkling-image-o1 (Claude Code surfaces this as mcp__dlazy__kling-image-o1)
Typeimage
ExecutionAsync task; the CLI polls until completion (--no-wait returns generateId immediately)
BatchSupports --batch <n> parallel fan-out

Parameters

ArgTypeRequiredNotes
promptstringYesPrompt
imagesarray<url>NoImages; image (accepts URL, local path, or data: URL); max 10 items
clarity"2k" | "4k"NoClarity; default "2k"
aspect_ratio"16:9" | "9:16" | "1:1" | "4:3" | "3:4" | "3:2" | "2:3" | "21:9" | "auto"NoAspect Ratio; default "16:9"

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

CLI Examples

dlazy kling-image-o1 --help
dlazy kling-image-o1 --prompt "Write your prompt here" --images "https://example.com/reference1.jpg" "https://example.com/reference2.jpg"
dlazy kling-image-o1 --prompt "Write your prompt here" --images "./local-image.png"
dlazy kling-image-o1 --prompt "Write your prompt here" --images "https://example.com/reference1.jpg" "https://example.com/reference2.jpg" --dry-run
dlazy kling-image-o1 --prompt "Write your prompt here" --images "https://example.com/reference1.jpg" "https://example.com/reference2.jpg" --no-wait
dlazy kling-image-o1 --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 kling-image-o1 --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__kling-image-o1; generic clients (e.g. OpenClaw) call it as kling-image-o1.

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