improved
API: Voices APIs changed
7 months ago by ReadMe API
In view of the new Simba Turbo model launch we have made improvements to the voices APIs. The changes are as follows:
- when GETting the list of voices the
model
andlanguages
properties of the Voice object were merged into a singlemodels
property:
"models": [
{
"name": "simba-base",
"languages": [
{
"locale": "en-US",
"preview_audio": "https://storage.googleapis.com/speechify-ai-api-prod-centralized-voice-list/variants%2Fai-api/previews/en-US-victoria-speechify.mp3"
}
]
},
{
"name": "simba-turbo",
"languages": [
{
"locale": "en-US",
"preview_audio": "https://storage.googleapis.com/speechify-ai-api-prod-centralized-voice-list/variants%2Fai-api/previews/en-US-victoria-speechify.mp3"
}
]
}
]
- similarly, when POSTing to clone the voice, the response voice details object got the
model
andlanguages
replaced with the identical unifiedmodels
property.