fix python bug (#1346)

main
licycle 1 year ago committed by GitHub
parent 7e7073b45a
commit f8273610f9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -780,8 +780,8 @@ async def tts_endpoint(request: Request):
json_post_raw.get("text_language"), json_post_raw.get("text_language"),
json_post_raw.get("cut_punc"), json_post_raw.get("cut_punc"),
json_post_raw.get("top_k", 10), json_post_raw.get("top_k", 10),
json_post_raw.get("top_p" 1.0), json_post_raw.get("top_p", 1.0),
json_post_raw.get("temperature" 1.0), json_post_raw.get("temperature", 1.0),
json_post_raw.get("speed", 1.0) json_post_raw.get("speed", 1.0)
) )

Loading…
Cancel
Save