From f2b2f41412dcf36d852378c2af794f360c38dd79 Mon Sep 17 00:00:00 2001 From: Fireblade Date: Sun, 16 Feb 2025 17:07:41 -0500 Subject: [PATCH] fixed wrong varible name bug --- api/src/routers/development.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/routers/development.py b/api/src/routers/development.py index 7b6246f..82d5c40 100644 --- a/api/src/routers/development.py +++ b/api/src/routers/development.py @@ -304,7 +304,7 @@ async def create_captioned_speech( is_first_chunk=False, is_last_chunk=True, ) - output=content.output + final.output + output=audio_data.output + final.output base64_output= base64.b64encode(output).decode("utf-8")