From f8273610f9d6fd54c5e991f74abcc982a985550a Mon Sep 17 00:00:00 2001 From: licycle Date: Thu, 25 Jul 2024 15:11:14 +0800 Subject: [PATCH] fix python bug (#1346) --- api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api.py b/api.py index 151e6c2..69cbdb4 100644 --- a/api.py +++ b/api.py @@ -780,8 +780,8 @@ async def tts_endpoint(request: Request): json_post_raw.get("text_language"), json_post_raw.get("cut_punc"), json_post_raw.get("top_k", 10), - json_post_raw.get("top_p" 1.0), - json_post_raw.get("temperature" 1.0), + json_post_raw.get("top_p", 1.0), + json_post_raw.get("temperature", 1.0), json_post_raw.get("speed", 1.0) )