Agents
Create agent
Create an AI voice agent from an agent template.
POST
/
v1
/
agents
Create agent
curl --request POST \
--url https://api.persistence.dev/v1/agents \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"name": "<string>",
"templateId": "<string>",
"description": "<string>",
"type": "<string>"
}
'import requests
url = "https://api.persistence.dev/v1/agents"
payload = {
"name": "<string>",
"templateId": "<string>",
"description": "<string>",
"type": "<string>"
}
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: '<string>',
templateId: '<string>',
description: '<string>',
type: '<string>'
})
};
fetch('https://api.persistence.dev/v1/agents', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.persistence.dev/v1/agents",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'name' => '<string>',
'templateId' => '<string>',
'description' => '<string>',
'type' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.persistence.dev/v1/agents"
payload := strings.NewReader("{\n \"name\": \"<string>\",\n \"templateId\": \"<string>\",\n \"description\": \"<string>\",\n \"type\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.persistence.dev/v1/agents")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"<string>\",\n \"templateId\": \"<string>\",\n \"description\": \"<string>\",\n \"type\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.persistence.dev/v1/agents")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"<string>\",\n \"templateId\": \"<string>\",\n \"description\": \"<string>\",\n \"type\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"avatarUrl": "<string>",
"createdAt": "<string>",
"description": "<string>",
"external": [
{
"data": {},
"name": "<string>"
}
],
"id": "<string>",
"name": "<string>",
"promptType": "single_prompt",
"spaceId": "<string>",
"status": "<string>",
"templateId": "<string>",
"type": "voice",
"updatedAt": "<string>",
"version": {
"ambienceId": "<string>",
"ambienceVolume": 123,
"amd": {
"detectionOptions": {
"humanSilenceThreshold": 123,
"humanSpeechThreshold": 123,
"machineSilenceThreshold": 123,
"noSpeechThreshold": 123,
"prompt": "<string>",
"timeout": 123
},
"enabled": true,
"interruptOnMachine": true,
"ivrHangUpEnabled": true,
"ivrNavigationEnabled": true,
"ivrNavigationInstructions": "<string>",
"llmModel": "<string>",
"sttModel": "<string>",
"voiceMailAction": "<string>",
"voiceMailMessage": "<string>"
},
"createdAt": "<string>",
"digitPronunciation": true,
"dynamicVariables": {
"variables": [
{
"defaultValue": "<string>",
"key": "<string>"
}
]
},
"endpointingConfig": {
"maxDelay": 123,
"minDelay": 123,
"mode": "fixed"
},
"endpointingPatience": 123,
"fallbackMessages": [
"<string>"
],
"greetingConfig": {
"messageConfig": {
"delay": 123,
"message": "<string>",
"type": "static"
},
"mode": "agent_first"
},
"id": 123,
"interruptionConfig": {
"discardAudioIfUninterruptible": true,
"enabled": true,
"falseInterruptionTimeout": 123,
"minDuration": 123,
"minWords": 123,
"mode": "adaptive",
"resumeFalseInterruption": true
},
"interruptionSensitivity": 123,
"knowledgeBaseIds": [
"<string>"
],
"languageCode": "<string>",
"llmMaxTokens": 123,
"llmModel": "<string>",
"llmProvider": "<string>",
"llmTemperature": 123,
"maxCallDurationSec": 123,
"minConsecutiveSpeechDelay": 123,
"noiseCancellationConfig": {
"mode": "noise_only"
},
"piiAnonymisation": true,
"piiCategories": [
"<string>"
],
"piiRedaction": true,
"pipelineType": "cascaded",
"preemptiveGenerationConfig": {
"enabled": true,
"maxRetries": 123,
"maxSpeechDuration": 123,
"preemptiveTts": true
},
"presenceDetectionConfig": {
"checkIntervalSec": 123,
"maxAwayChecks": 123
},
"responseEagerness": 123,
"silenceTimeoutSec": 123,
"status": "<string>",
"sttModel": "<string>",
"sttProvider": "<string>",
"systemPrompt": "<string>",
"tools": [
{
"config": {},
"description": "<string>",
"id": "<string>",
"isActive": true,
"kind": "<string>",
"name": "<string>",
"parametersSchema": {},
"toolName": "<string>"
}
],
"triggers": [
{
"category": "<string>",
"createdAt": "<string>",
"executionOrder": 123,
"id": "<string>",
"isActive": true,
"llmModel": "<string>",
"llmProvider": "<string>",
"maxTokens": 123,
"name": "<string>",
"pattern": [
{
"description": "<string>",
"isMultiple": true,
"key": "<string>",
"type": "<string>"
}
],
"prompt": "<string>",
"type": "<string>",
"updatedAt": "<string>"
}
],
"ttsConfigs": {
"name": "<string>",
"provider": "elevenlabs",
"providerVoiceId": "<string>",
"type": "preset",
"avatarUrl": "<string>",
"category": "<string>",
"createdAt": "<string>",
"id": 123,
"isActive": true,
"languages": [
{
"voiceId": 123,
"accent": "<string>",
"age": "<string>",
"createdAt": "<string>",
"displayName": "<string>",
"gender": "<string>",
"id": 123,
"languageId": "<string>",
"metadata": [
123
],
"modelId": "<string>",
"previewUrl": "<string>",
"s2sSupported": [
"<string>"
],
"sourceFilesUrl": "<string>",
"sttSupported": [
"<string>"
],
"style": [
"<string>"
],
"updatedAt": "<string>"
}
],
"metadata": [
123
],
"publicId": "<string>",
"rating": 123,
"spaceId": 123,
"status": "<string>",
"tags": [
"<string>"
],
"traits": "<string>",
"updatedAt": "<string>"
},
"ttsSpeed": 123,
"ttsVoiceModelId": 123,
"turnDetectionConfig": {
"mode": "stt",
"modelType": "multilingual",
"unlikelyThreshold": 123
},
"updatedAt": "<string>",
"version": 123,
"vocabularySpecialization": "general",
"voiceVolume": 123
},
"versionHistory": [
{
"ambienceId": "<string>",
"ambienceVolume": 123,
"amd": {
"detectionOptions": {
"humanSilenceThreshold": 123,
"humanSpeechThreshold": 123,
"machineSilenceThreshold": 123,
"noSpeechThreshold": 123,
"prompt": "<string>",
"timeout": 123
},
"enabled": true,
"interruptOnMachine": true,
"ivrHangUpEnabled": true,
"ivrNavigationEnabled": true,
"ivrNavigationInstructions": "<string>",
"llmModel": "<string>",
"sttModel": "<string>",
"voiceMailAction": "<string>",
"voiceMailMessage": "<string>"
},
"createdAt": "<string>",
"digitPronunciation": true,
"dynamicVariables": {
"variables": [
{
"defaultValue": "<string>",
"key": "<string>"
}
]
},
"endpointingConfig": {
"maxDelay": 123,
"minDelay": 123,
"mode": "fixed"
},
"endpointingPatience": 123,
"fallbackMessages": [
"<string>"
],
"greetingConfig": {
"messageConfig": {
"delay": 123,
"message": "<string>",
"type": "static"
},
"mode": "agent_first"
},
"id": 123,
"interruptionConfig": {
"discardAudioIfUninterruptible": true,
"enabled": true,
"falseInterruptionTimeout": 123,
"minDuration": 123,
"minWords": 123,
"mode": "adaptive",
"resumeFalseInterruption": true
},
"interruptionSensitivity": 123,
"knowledgeBaseIds": [
"<string>"
],
"languageCode": "<string>",
"llmMaxTokens": 123,
"llmModel": "<string>",
"llmProvider": "<string>",
"llmTemperature": 123,
"maxCallDurationSec": 123,
"minConsecutiveSpeechDelay": 123,
"noiseCancellationConfig": {
"mode": "noise_only"
},
"piiAnonymisation": true,
"piiCategories": [
"<string>"
],
"piiRedaction": true,
"pipelineType": "cascaded",
"preemptiveGenerationConfig": {
"enabled": true,
"maxRetries": 123,
"maxSpeechDuration": 123,
"preemptiveTts": true
},
"presenceDetectionConfig": {
"checkIntervalSec": 123,
"maxAwayChecks": 123
},
"responseEagerness": 123,
"silenceTimeoutSec": 123,
"status": "<string>",
"sttModel": "<string>",
"sttProvider": "<string>",
"systemPrompt": "<string>",
"tools": [
{
"config": {},
"description": "<string>",
"id": "<string>",
"isActive": true,
"kind": "<string>",
"name": "<string>",
"parametersSchema": {},
"toolName": "<string>"
}
],
"triggers": [
{
"category": "<string>",
"createdAt": "<string>",
"executionOrder": 123,
"id": "<string>",
"isActive": true,
"llmModel": "<string>",
"llmProvider": "<string>",
"maxTokens": 123,
"name": "<string>",
"pattern": [
{
"description": "<string>",
"isMultiple": true,
"key": "<string>",
"type": "<string>"
}
],
"prompt": "<string>",
"type": "<string>",
"updatedAt": "<string>"
}
],
"ttsConfigs": {
"name": "<string>",
"provider": "elevenlabs",
"providerVoiceId": "<string>",
"type": "preset",
"avatarUrl": "<string>",
"category": "<string>",
"createdAt": "<string>",
"id": 123,
"isActive": true,
"languages": [
{
"voiceId": 123,
"accent": "<string>",
"age": "<string>",
"createdAt": "<string>",
"displayName": "<string>",
"gender": "<string>",
"id": 123,
"languageId": "<string>",
"metadata": [
123
],
"modelId": "<string>",
"previewUrl": "<string>",
"s2sSupported": [
"<string>"
],
"sourceFilesUrl": "<string>",
"sttSupported": [
"<string>"
],
"style": [
"<string>"
],
"updatedAt": "<string>"
}
],
"metadata": [
123
],
"publicId": "<string>",
"rating": 123,
"spaceId": 123,
"status": "<string>",
"tags": [
"<string>"
],
"traits": "<string>",
"updatedAt": "<string>"
},
"ttsSpeed": 123,
"ttsVoiceModelId": 123,
"turnDetectionConfig": {
"mode": "stt",
"modelType": "multilingual",
"unlikelyThreshold": 123
},
"updatedAt": "<string>",
"version": 123,
"vocabularySpecialization": "general",
"voiceVolume": 123
}
]
},
"success": true
}{
"code": "<string>",
"error": "<string>"
}{
"code": "<string>",
"error": "<string>"
}{
"code": "<string>",
"error": "<string>"
}{
"code": "<string>",
"error": "<string>"
}⌘I
Create agent
curl --request POST \
--url https://api.persistence.dev/v1/agents \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"name": "<string>",
"templateId": "<string>",
"description": "<string>",
"type": "<string>"
}
'import requests
url = "https://api.persistence.dev/v1/agents"
payload = {
"name": "<string>",
"templateId": "<string>",
"description": "<string>",
"type": "<string>"
}
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: '<string>',
templateId: '<string>',
description: '<string>',
type: '<string>'
})
};
fetch('https://api.persistence.dev/v1/agents', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.persistence.dev/v1/agents",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'name' => '<string>',
'templateId' => '<string>',
'description' => '<string>',
'type' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.persistence.dev/v1/agents"
payload := strings.NewReader("{\n \"name\": \"<string>\",\n \"templateId\": \"<string>\",\n \"description\": \"<string>\",\n \"type\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.persistence.dev/v1/agents")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"<string>\",\n \"templateId\": \"<string>\",\n \"description\": \"<string>\",\n \"type\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.persistence.dev/v1/agents")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"<string>\",\n \"templateId\": \"<string>\",\n \"description\": \"<string>\",\n \"type\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"avatarUrl": "<string>",
"createdAt": "<string>",
"description": "<string>",
"external": [
{
"data": {},
"name": "<string>"
}
],
"id": "<string>",
"name": "<string>",
"promptType": "single_prompt",
"spaceId": "<string>",
"status": "<string>",
"templateId": "<string>",
"type": "voice",
"updatedAt": "<string>",
"version": {
"ambienceId": "<string>",
"ambienceVolume": 123,
"amd": {
"detectionOptions": {
"humanSilenceThreshold": 123,
"humanSpeechThreshold": 123,
"machineSilenceThreshold": 123,
"noSpeechThreshold": 123,
"prompt": "<string>",
"timeout": 123
},
"enabled": true,
"interruptOnMachine": true,
"ivrHangUpEnabled": true,
"ivrNavigationEnabled": true,
"ivrNavigationInstructions": "<string>",
"llmModel": "<string>",
"sttModel": "<string>",
"voiceMailAction": "<string>",
"voiceMailMessage": "<string>"
},
"createdAt": "<string>",
"digitPronunciation": true,
"dynamicVariables": {
"variables": [
{
"defaultValue": "<string>",
"key": "<string>"
}
]
},
"endpointingConfig": {
"maxDelay": 123,
"minDelay": 123,
"mode": "fixed"
},
"endpointingPatience": 123,
"fallbackMessages": [
"<string>"
],
"greetingConfig": {
"messageConfig": {
"delay": 123,
"message": "<string>",
"type": "static"
},
"mode": "agent_first"
},
"id": 123,
"interruptionConfig": {
"discardAudioIfUninterruptible": true,
"enabled": true,
"falseInterruptionTimeout": 123,
"minDuration": 123,
"minWords": 123,
"mode": "adaptive",
"resumeFalseInterruption": true
},
"interruptionSensitivity": 123,
"knowledgeBaseIds": [
"<string>"
],
"languageCode": "<string>",
"llmMaxTokens": 123,
"llmModel": "<string>",
"llmProvider": "<string>",
"llmTemperature": 123,
"maxCallDurationSec": 123,
"minConsecutiveSpeechDelay": 123,
"noiseCancellationConfig": {
"mode": "noise_only"
},
"piiAnonymisation": true,
"piiCategories": [
"<string>"
],
"piiRedaction": true,
"pipelineType": "cascaded",
"preemptiveGenerationConfig": {
"enabled": true,
"maxRetries": 123,
"maxSpeechDuration": 123,
"preemptiveTts": true
},
"presenceDetectionConfig": {
"checkIntervalSec": 123,
"maxAwayChecks": 123
},
"responseEagerness": 123,
"silenceTimeoutSec": 123,
"status": "<string>",
"sttModel": "<string>",
"sttProvider": "<string>",
"systemPrompt": "<string>",
"tools": [
{
"config": {},
"description": "<string>",
"id": "<string>",
"isActive": true,
"kind": "<string>",
"name": "<string>",
"parametersSchema": {},
"toolName": "<string>"
}
],
"triggers": [
{
"category": "<string>",
"createdAt": "<string>",
"executionOrder": 123,
"id": "<string>",
"isActive": true,
"llmModel": "<string>",
"llmProvider": "<string>",
"maxTokens": 123,
"name": "<string>",
"pattern": [
{
"description": "<string>",
"isMultiple": true,
"key": "<string>",
"type": "<string>"
}
],
"prompt": "<string>",
"type": "<string>",
"updatedAt": "<string>"
}
],
"ttsConfigs": {
"name": "<string>",
"provider": "elevenlabs",
"providerVoiceId": "<string>",
"type": "preset",
"avatarUrl": "<string>",
"category": "<string>",
"createdAt": "<string>",
"id": 123,
"isActive": true,
"languages": [
{
"voiceId": 123,
"accent": "<string>",
"age": "<string>",
"createdAt": "<string>",
"displayName": "<string>",
"gender": "<string>",
"id": 123,
"languageId": "<string>",
"metadata": [
123
],
"modelId": "<string>",
"previewUrl": "<string>",
"s2sSupported": [
"<string>"
],
"sourceFilesUrl": "<string>",
"sttSupported": [
"<string>"
],
"style": [
"<string>"
],
"updatedAt": "<string>"
}
],
"metadata": [
123
],
"publicId": "<string>",
"rating": 123,
"spaceId": 123,
"status": "<string>",
"tags": [
"<string>"
],
"traits": "<string>",
"updatedAt": "<string>"
},
"ttsSpeed": 123,
"ttsVoiceModelId": 123,
"turnDetectionConfig": {
"mode": "stt",
"modelType": "multilingual",
"unlikelyThreshold": 123
},
"updatedAt": "<string>",
"version": 123,
"vocabularySpecialization": "general",
"voiceVolume": 123
},
"versionHistory": [
{
"ambienceId": "<string>",
"ambienceVolume": 123,
"amd": {
"detectionOptions": {
"humanSilenceThreshold": 123,
"humanSpeechThreshold": 123,
"machineSilenceThreshold": 123,
"noSpeechThreshold": 123,
"prompt": "<string>",
"timeout": 123
},
"enabled": true,
"interruptOnMachine": true,
"ivrHangUpEnabled": true,
"ivrNavigationEnabled": true,
"ivrNavigationInstructions": "<string>",
"llmModel": "<string>",
"sttModel": "<string>",
"voiceMailAction": "<string>",
"voiceMailMessage": "<string>"
},
"createdAt": "<string>",
"digitPronunciation": true,
"dynamicVariables": {
"variables": [
{
"defaultValue": "<string>",
"key": "<string>"
}
]
},
"endpointingConfig": {
"maxDelay": 123,
"minDelay": 123,
"mode": "fixed"
},
"endpointingPatience": 123,
"fallbackMessages": [
"<string>"
],
"greetingConfig": {
"messageConfig": {
"delay": 123,
"message": "<string>",
"type": "static"
},
"mode": "agent_first"
},
"id": 123,
"interruptionConfig": {
"discardAudioIfUninterruptible": true,
"enabled": true,
"falseInterruptionTimeout": 123,
"minDuration": 123,
"minWords": 123,
"mode": "adaptive",
"resumeFalseInterruption": true
},
"interruptionSensitivity": 123,
"knowledgeBaseIds": [
"<string>"
],
"languageCode": "<string>",
"llmMaxTokens": 123,
"llmModel": "<string>",
"llmProvider": "<string>",
"llmTemperature": 123,
"maxCallDurationSec": 123,
"minConsecutiveSpeechDelay": 123,
"noiseCancellationConfig": {
"mode": "noise_only"
},
"piiAnonymisation": true,
"piiCategories": [
"<string>"
],
"piiRedaction": true,
"pipelineType": "cascaded",
"preemptiveGenerationConfig": {
"enabled": true,
"maxRetries": 123,
"maxSpeechDuration": 123,
"preemptiveTts": true
},
"presenceDetectionConfig": {
"checkIntervalSec": 123,
"maxAwayChecks": 123
},
"responseEagerness": 123,
"silenceTimeoutSec": 123,
"status": "<string>",
"sttModel": "<string>",
"sttProvider": "<string>",
"systemPrompt": "<string>",
"tools": [
{
"config": {},
"description": "<string>",
"id": "<string>",
"isActive": true,
"kind": "<string>",
"name": "<string>",
"parametersSchema": {},
"toolName": "<string>"
}
],
"triggers": [
{
"category": "<string>",
"createdAt": "<string>",
"executionOrder": 123,
"id": "<string>",
"isActive": true,
"llmModel": "<string>",
"llmProvider": "<string>",
"maxTokens": 123,
"name": "<string>",
"pattern": [
{
"description": "<string>",
"isMultiple": true,
"key": "<string>",
"type": "<string>"
}
],
"prompt": "<string>",
"type": "<string>",
"updatedAt": "<string>"
}
],
"ttsConfigs": {
"name": "<string>",
"provider": "elevenlabs",
"providerVoiceId": "<string>",
"type": "preset",
"avatarUrl": "<string>",
"category": "<string>",
"createdAt": "<string>",
"id": 123,
"isActive": true,
"languages": [
{
"voiceId": 123,
"accent": "<string>",
"age": "<string>",
"createdAt": "<string>",
"displayName": "<string>",
"gender": "<string>",
"id": 123,
"languageId": "<string>",
"metadata": [
123
],
"modelId": "<string>",
"previewUrl": "<string>",
"s2sSupported": [
"<string>"
],
"sourceFilesUrl": "<string>",
"sttSupported": [
"<string>"
],
"style": [
"<string>"
],
"updatedAt": "<string>"
}
],
"metadata": [
123
],
"publicId": "<string>",
"rating": 123,
"spaceId": 123,
"status": "<string>",
"tags": [
"<string>"
],
"traits": "<string>",
"updatedAt": "<string>"
},
"ttsSpeed": 123,
"ttsVoiceModelId": 123,
"turnDetectionConfig": {
"mode": "stt",
"modelType": "multilingual",
"unlikelyThreshold": 123
},
"updatedAt": "<string>",
"version": 123,
"vocabularySpecialization": "general",
"voiceVolume": 123
}
]
},
"success": true
}{
"code": "<string>",
"error": "<string>"
}{
"code": "<string>",
"error": "<string>"
}{
"code": "<string>",
"error": "<string>"
}{
"code": "<string>",
"error": "<string>"
}