From 0c6a2cde303278c7e6ae7496baca1deb4ad90ee0 Mon Sep 17 00:00:00 2001 From: Ben Xu Date: Mon, 30 Dec 2024 19:45:25 -0500 Subject: [PATCH] fix error on local tts docs --- docs/server/configure.mdx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/docs/server/configure.mdx b/docs/server/configure.mdx index d681b38..735c05b 100644 --- a/docs/server/configure.mdx +++ b/docs/server/configure.mdx @@ -129,11 +129,10 @@ We recommend having Docker installed for the easiest setup. Local TTS and STT re #### Local TTS 1. Clone the [openedai-speech](https://github.com/matatonic/openedai-speech?tab=readme-ov-file) repository -2. Set `base_url = os.environ.get("OPENAI_BASE_URL", "http://localhost:9000/v1")` to point to localhost at port 9000 in `say.py` -3. Follow the Docker Image instructions for your system. Default run `docker compose -f docker-compose.min.yml up` in the root. -4. Set your profile with local TTS service +2. Follow the Docker Image instructions for your system. Default run `docker compose -f docker-compose.min.yml up` in the root. +3. Set your profile with local TTS service ```python -interpreter.stt = "local" +interpreter.tts = "local" ``` #### Local STT