fix voice list

This commit is contained in:
Yeuoly 2024-11-01 16:42:32 +08:00
parent 84b7a4607a
commit 5605ff9803
No known key found for this signature in database
GPG Key ID: A66E7E320FB19F61

View File

@ -413,7 +413,7 @@ class PluginModelManager(BasePluginManager):
""" """
response = self._request_with_plugin_daemon_response_stream( response = self._request_with_plugin_daemon_response_stream(
method="POST", method="POST",
path=f"plugin/{tenant_id}/dispatch/model/voices", path=f"plugin/{tenant_id}/dispatch/tts/model/voices",
type=PluginVoicesResponse, type=PluginVoicesResponse,
data=jsonable_encoder( data=jsonable_encoder(
{ {
@ -434,8 +434,10 @@ class PluginModelManager(BasePluginManager):
) )
for resp in response: for resp in response:
voices = []
for voice in resp.voices: for voice in resp.voices:
return [{"name": voice.name, "value": voice.value}] voices.append({"name": voice.name, "value": voice.value})
return voices
return [] return []