From 15f3d68bc50b7b4cc4f1581f06ddf1392a7768c1 Mon Sep 17 00:00:00 2001 From: mnasrautinno Date: Thu, 13 Nov 2025 06:44:04 +0300 Subject: [PATCH] fix: app's ai site text to speech api (#28091) --- api/controllers/web/audio.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/api/controllers/web/audio.py b/api/controllers/web/audio.py index 3103851088..b9fef48c4d 100644 --- a/api/controllers/web/audio.py +++ b/api/controllers/web/audio.py @@ -88,12 +88,6 @@ class AudioApi(WebApiResource): @web_ns.route("/text-to-audio") class TextApi(WebApiResource): - text_to_audio_response_fields = { - "audio_url": fields.String, - "duration": fields.Float, - } - - @marshal_with(text_to_audio_response_fields) @web_ns.doc("Text to Audio") @web_ns.doc(description="Convert text to audio using text-to-speech service.") @web_ns.doc(