load_instrument_or_effect
Load a specific instrument or effect onto a designated track in Ableton Live using its URI, enabling precise sound design and production workflows within AI-assisted music sessions.
Instructions
Load an instrument or effect onto a track using its URI.
Parameters:
track_index: The index of the track to load the instrument on
uri: The URI of the instrument or effect to load (e.g., 'query:Synths#Instrument%20Rack:Bass:FileId_5116')
Input Schema
Name | Required | Description | Default |
---|---|---|---|
track_index | Yes | ||
uri | Yes |
Input Schema (JSON Schema)
{
"properties": {
"track_index": {
"title": "Track Index",
"type": "integer"
},
"uri": {
"title": "Uri",
"type": "string"
}
},
"required": [
"track_index",
"uri"
],
"title": "load_instrument_or_effectArguments",
"type": "object"
}