mirror of
https://git.mirrors.martin98.com/https://github.com/open-webui/open-webui
synced 2025-08-17 02:05:59 +08:00
fix: elevenlabs audio
This commit is contained in:
parent
3c74ce3653
commit
8b6d03e430
@ -311,7 +311,7 @@ async def speech(request: Request, user=Depends(get_verified_user)):
|
|||||||
elif request.app.state.config.TTS_ENGINE == "elevenlabs":
|
elif request.app.state.config.TTS_ENGINE == "elevenlabs":
|
||||||
voice_id = payload.get("voice", "")
|
voice_id = payload.get("voice", "")
|
||||||
|
|
||||||
if voice_id not in get_available_voices():
|
if voice_id not in get_available_voices(request):
|
||||||
raise HTTPException(
|
raise HTTPException(
|
||||||
status_code=400,
|
status_code=400,
|
||||||
detail="Invalid voice id",
|
detail="Invalid voice id",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user