From cf17d9444123c5f99c7e3388d4ce04d888a51e10 Mon Sep 17 00:00:00 2001 From: James Pine Date: Sat, 18 Apr 2026 22:56:45 -0700 Subject: [PATCH] fix(landing): use qwen_custom_voice in API example (instruct is CustomVoice-only) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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) --- landing/src/components/ApiSection.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/landing/src/components/ApiSection.tsx b/landing/src/components/ApiSection.tsx index 55c5216d..a8896d7c 100644 --- a/landing/src/components/ApiSection.tsx +++ b/landing/src/components/ApiSection.tsx @@ -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`;