Models & Languages

Text-to-speech language support depends on the model (base URL) used:

  • api.respeecher.com/v1/public/tts/en-rt: English primarily, with some support for other languages for voices highlighted with ✨ in the playground, which is useful for short passages in other languages within text that is otherwise in English. The default model in the Python and TypeScript SDKs;
  • api.respeecher.com/v1/public/tts/ua-rt: Ukrainian primarily, with some support for other languages for all voices, which is useful for short passages in other languages within text that is otherwise in Ukrainian.

There are predefined constants for public models in the SDKs, for example in Python:

1from respeecher import Respeecher, RespeecherEnvironment
2client = Respeecher(environment=RespeecherEnvironment.PUBLIC_UA_RT)