From e8aab816ffc9fc483ca6d3555d6c8430b4735388 Mon Sep 17 00:00:00 2001 From: Jason Cameron Date: Tue, 28 Oct 2025 19:52:29 -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 d09bbad..5f4a88b 100644 --- a/TTS/openai_tts.py +++ b/TTS/openai_tts.py @@ -72,7 +72,7 @@ class OpenAITTS: # Select the model from configuration; default to 'tts-1' model = settings.config["settings"]["tts"].get("openai_model", "tts-1") - # Create Payload for API-request + # Create payload for API request payload = { "model": model, "voice": voice,