dLazy AIdLazy AI
Model ReferenceAudio Models

qwen-tts

Alibaba Bailian qwen3-tts text-to-speech. Choose from curated system voices (including dialects) or design a custom voice from a natural-language description.

Alibaba Bailian qwen3-tts text-to-speech. Choose from curated system voices (including dialects) or design a custom voice from a natural-language description.

Overview

FieldValue
Model IDqwen-tts
CLIdlazy qwen-tts
MCPqwen-tts (Claude Code surfaces this as mcp__dlazy__qwen-tts)
Typeaudio
ExecutionAsync task; the CLI polls until completion (--no-wait returns generateId immediately)
BatchSupports --batch <n> parallel fan-out

Parameters

ArgTypeRequiredNotes
promptstringYesPrompt
generation_mode"system" | "design"NoGeneration Mode(system=System Voice; design=Designed by Description); default "system"
voice"Cherry" | "Serena" | "Ethan" | "Chelsie" | "Momo" | "Vivian" | "Moon" | "Maia" | "Kai" | "Nofish" | "Bella" | "Jennifer" | "Ryan" | "Katerina" | "Aiden" | "Eldric Sage" | "Mia" | "Mochi" | "Bellona" | "Vincent" | "Bunny" | "Neil" | "Elias" | "Arthur" | "Nini" | "Seren" | "Pip" | "Stella" | "Jada" | "Dylan" | "Sunny" | "Eric" | "Rocky" | "Kiki" | "Peter" | "Marcus" | "Roy" | "Li"NoVoice; default "Cherry"; only when generation_mode="system"
voice_promptstringNoVoice Description (describe the voice you want in natural language); default ""; only when generation_mode="design"
language_type"Auto" | "Chinese" | "English" | "Japanese" | "Korean" | "French" | "German" | "Italian" | "Portuguese" | "Russian" | "Spanish"NoLanguage; default "Auto"

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

CLI Examples

dlazy qwen-tts --help
dlazy qwen-tts --prompt "Write your prompt here"
dlazy qwen-tts --prompt "Write your prompt here" --dry-run
dlazy qwen-tts --prompt "Write your prompt here" --no-wait
dlazy qwen-tts --prompt "Write your prompt here" --batch 4

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__qwen-tts; generic clients (e.g. OpenClaw) call it as qwen-tts.

See MCP setup for how to add the server.

Output

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

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

On this page