优化报错提示

This commit is contained in:
ChasonJiang 2024-08-26 16:16:27 +08:00
parent 841d8d7fe8
commit 922af388c3

View File

@ -257,9 +257,9 @@ def check_params(req:dict):
if (prompt_lang in [None, ""]) :
return JSONResponse(status_code=400, content={"message": "prompt_lang is required"})
elif prompt_lang.lower() not in tts_config.languages:
return JSONResponse(status_code=400, content={"message": "prompt_lang is not supported"})
return JSONResponse(status_code=400, content={"message": f"prompt_lang: {prompt_lang} is not supported in {tts_config.version}"})
if media_type not in ["wav", "raw", "ogg", "aac"]:
return JSONResponse(status_code=400, content={"message": "media_type is not supported"})
return JSONResponse(status_code=400, content={"message": f"media_type: {media_type} is not supported"})
elif media_type == "ogg" and not streaming_mode:
return JSONResponse(status_code=400, content={"message": "ogg format is not supported in non-streaming mode"})