set_clip_name_tool
Rename clips in Ableton Live by specifying track index, clip index, and desired name, enabling precise control over music production workflows.
Instructions
Set the name of a clip.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
clip_index | Yes | ||
name | Yes | ||
track_index | Yes |
Input Schema (JSON Schema)
{
"properties": {
"clip_index": {
"title": "Clip Index",
"type": "integer"
},
"name": {
"title": "Name",
"type": "string"
},
"track_index": {
"title": "Track Index",
"type": "integer"
}
},
"required": [
"track_index",
"clip_index",
"name"
],
"title": "set_clip_name_toolArguments",
"type": "object"
}