compose_rhythm
Build complex rhythms by combining lines, loops, and vibes with weighted components and tempo control for creative workflows.
Instructions
Compose a complex rhythm from lines, loops, and vibes
Input Schema
Name | Required | Description | Default |
---|---|---|---|
components | Yes | Components and their weights | |
name | Yes | Name for the composed rhythm | |
tempo | No | Base tempo in BPM |
Input Schema (JSON Schema)
{
"properties": {
"components": {
"description": "Components and their weights",
"items": {
"properties": {
"element": {
"type": "string"
},
"weight": {
"type": "number"
}
},
"type": "object"
},
"type": "array"
},
"name": {
"description": "Name for the composed rhythm",
"type": "string"
},
"tempo": {
"description": "Base tempo in BPM",
"type": "number"
}
},
"required": [
"name",
"components"
],
"type": "object"
}