From 353fe7969014ecd1d3780419a88b985b0f44c226 Mon Sep 17 00:00:00 2001 From: Fireblade Date: Fri, 14 Feb 2025 14:39:24 -0500 Subject: [PATCH] fix small error --- api/src/routers/openai_compatible.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/routers/openai_compatible.py b/api/src/routers/openai_compatible.py index 146876d..bb4083d 100644 --- a/api/src/routers/openai_compatible.py +++ b/api/src/routers/openai_compatible.py @@ -150,7 +150,7 @@ async def stream_audio_chunks( speed=request.speed, output_format=request.response_format, lang_code=request.lang_code or settings.default_voice_code or voice_name[0].lower(), - normalization_options=request.normalization_options + normalization_options=request.normalization_options, return_timestamps=unique_properties["return_timestamps"], ):