voice_clone
Create a voice clone from provided audio files using ElevenLabs technology to replicate a specific voice for text-to-speech applications.
Instructions
Create an instant voice clone of a voice using provided audio files.
⚠️ 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 |
---|---|---|---|
description | No | ||
files | Yes | ||
name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Description"
},
"files": {
"items": {
"type": "string"
},
"title": "Files",
"type": "array"
},
"name": {
"title": "Name",
"type": "string"
}
},
"required": [
"name",
"files"
],
"type": "object"
}