Search the documentation

Pick a page and open it with Enter.

Read Aloud

Is read-aloud usable, and who speaks?

GET/api/v1/tts

Whether read-aloud works, and which voice it uses. Speech itself is not a call you make — the read_aloud tool does it inside a chat. This only tells the UI what to offer.

Response

json
{
  "available": true,
  "provider": "elevenlabs",
  "voice_id": "DDpANZ8PLYsm2RvgHVlV",
  "reason": null
}

With an ELEVENLABS_API_KEY, provider is "elevenlabs" and voice_id is the default voice. Without one, provider is "free" — read-aloud still works through a keyless fallback voice, and reason says so. available is only false when TTS_ENABLED=false.

200

Status retrieved.