set_track_name
Rename a specific track in Ableton Live by specifying its index and the desired new name, enabling precise track management during AI-assisted music production.
Instructions
Set the name of a track.
Parameters:
track_index: The index of the track to rename
name: The new name for the track
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| track_index | Yes |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"title": "Name",
"type": "string"
},
"track_index": {
"title": "Track Index",
"type": "integer"
}
},
"required": [
"track_index",
"name"
],
"title": "set_track_nameArguments",
"type": "object"
}