diff --git a/docs/guides/text-to-speech.mdx b/docs/guides/text-to-speech.mdx index 4a6688e..03dab15 100644 --- a/docs/guides/text-to-speech.mdx +++ b/docs/guides/text-to-speech.mdx @@ -1,22 +1,24 @@ --- title: "Text To Speech" -description: "The service to speak the text" +description: "The voice of 01" --- -## Piper (Local) +## Local TTS -This option installs piper to allow all text to speech to be done locally on device. +For local TTS, Coqui is used. -```bash -# Set a local TTS service -01 --tts-service piper +```python +# Set your profile with a local TTS service +interpreter.tts = "coqui" ``` -## OpenAI (Hosted) +## Hosted TTS -```bash -# Set TTS service -01 --tts-service openai +01 supports OpenAI and Elevenlabs for hosted TTS + +```python +# Set your profile with a hosted TTS service +interpreter.tts = "elevenlabs" ``` ## Other Models