fix(landing): use qwen_custom_voice in API example (instruct is CustomVoice-only)

The curl snippet showed engine: "qwen" alongside an instruct field, but base
Qwen3-TTS has no instruct path — that's a Qwen CustomVoice feature.

Co-Authored-By: Claude Opus 4.7 (1M context) <[email protected]>
This commit is contained in:
James Pine
2026-04-18 22:56:45 -07:00
co-authored by Claude Opus 4.7
parent 28aa963b09
commit cf17d94441
+1 -1
View File
@@ -30,7 +30,7 @@ const CURL_SNIPPET = `curl -X POST http://127.0.0.1:17493/generate \\
-d '{
"text": "Welcome to the game, player one.",
"profile_id": "morgan-freeman",
"engine": "qwen",
"engine": "qwen_custom_voice",
"instruct": "warm, slow, cinematic"
}' \\
--output line.wav`;