tts docs
This commit is contained in:
parent
d4c4229141
commit
4293884c5c
|
@ -1,22 +1,24 @@
|
||||||
---
|
---
|
||||||
title: "Text To Speech"
|
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
|
```python
|
||||||
# Set a local TTS service
|
# Set your profile with a local TTS service
|
||||||
01 --tts-service piper
|
interpreter.tts = "coqui"
|
||||||
```
|
```
|
||||||
|
|
||||||
## OpenAI (Hosted)
|
## Hosted TTS
|
||||||
|
|
||||||
```bash
|
01 supports OpenAI and Elevenlabs for hosted TTS
|
||||||
# Set TTS service
|
|
||||||
01 --tts-service openai
|
```python
|
||||||
|
# Set your profile with a hosted TTS service
|
||||||
|
interpreter.tts = "elevenlabs"
|
||||||
```
|
```
|
||||||
|
|
||||||
## Other Models
|
## Other Models
|
||||||
|
|
Loading…
Reference in New Issue