From 1ca0756dc10bd036c5179827a2da0f704b3cffd9 Mon Sep 17 00:00:00 2001 From: James Pine Date: Sat, 18 Apr 2026 22:57:30 -0700 Subject: [PATCH] fix(landing): use a realistic UUID for profile_id in API example Profile IDs are str(uuid.uuid4()), not slugs (see backend/services/profiles.py:175). 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 a8896d7c..51e784f9 100644 --- a/landing/src/components/ApiSection.tsx +++ b/landing/src/components/ApiSection.tsx @@ -29,7 +29,7 @@ const CURL_SNIPPET = `curl -X POST http://127.0.0.1:17493/generate \\ -H "Content-Type: application/json" \\ -d '{ "text": "Welcome to the game, player one.", - "profile_id": "morgan-freeman", + "profile_id": "b3f1c2d4-5e6f-4a7b-8c9d-0e1f2a3b4c5d", "engine": "qwen_custom_voice", "instruct": "warm, slow, cinematic" }' \\