From 4293884c5c0a84f092b9009cce99897e9f055cb9 Mon Sep 17 00:00:00 2001 From: Mike Bird Date: Wed, 10 Jul 2024 15:09:05 -0400 Subject: [PATCH] tts docs --- docs/guides/text-to-speech.mdx | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) 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