From 149db53ff01b58ef257521a36c92b3041144a41c Mon Sep 17 00:00:00 2001 From: Jason Cameron Date: Tue, 28 Oct 2025 19:53:01 -0400 Subject: [PATCH] Update TTS/openai_tts.py Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- TTS/openai_tts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TTS/openai_tts.py b/TTS/openai_tts.py index 299a93b..a4c1332 100644 --- a/TTS/openai_tts.py +++ b/TTS/openai_tts.py @@ -32,7 +32,7 @@ class OpenAITTS: # Remove trailing slash if present if base_url.endswith("/"): base_url = base_url[:-1] - # Hänge den TTS-spezifischen Pfad an + # Append the TTS-specific path self.api_url = base_url + "/audio/speech" # Set the available voices to a static list as per OpenAI TTS documentation.