fix python bug (#1346)

This commit is contained in:
licycle 2024-07-25 15:11:14 +08:00 committed by GitHub
parent 7e7073b45a
commit f8273610f9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

4
api.py
View File

@ -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)
)