create_voice_from_preview
Save a generated voice preview to your ElevenLabs voice library for future use, allowing you to store custom voices created through text-to-speech conversion.
Instructions
Add a generated voice to the voice library. Uses the voice ID from the text_to_voice
tool.
⚠️ COST WARNING: This tool makes an API call to ElevenLabs which may incur costs. Only use when explicitly requested by the user.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
generated_voice_id | Yes | ||
voice_description | Yes | ||
voice_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"generated_voice_id": {
"title": "Generated Voice Id",
"type": "string"
},
"voice_description": {
"title": "Voice Description",
"type": "string"
},
"voice_name": {
"title": "Voice Name",
"type": "string"
}
},
"required": [
"generated_voice_id",
"voice_name",
"voice_description"
],
"type": "object"
}