Skip to main content
Version: Next

TTS Providers

OpenReader supports OpenAI-compatible TTS providers through a common API shape.

tip

If you are running a self-hosted TTS server (Kokoro/Orpheus/etc.), use Custom OpenAI-Like in Settings.

Quick Setup by Provider

  1. In Settings, choose provider: OpenAI.
  2. Keep the default API_BASE (auto-filled).
  3. Set API_KEY to your OpenAI key.
  4. Choose model/voice.

Provider Dropdown Behavior

In Settings, provider options include:

  • OpenAI
  • Deepinfra
  • Custom OpenAI-Like (Kokoro, Orpheus, and other OpenAI-compatible endpoints)

API_BASE guidance:

  • OpenAI and Deepinfra auto-fill default endpoints.
  • Custom OpenAI-Like requires setting API_BASE manually.
OpenAI-Compatible API Shape

Custom providers should expose:

  • GET /v1/audio/voices
  • POST /v1/audio/speech
Server-Reachable API Base

TTS requests are sent from the Next.js server, not directly from the browser. API_BASE must be reachable from the server runtime.

Provider Guides