generate_pattern
Creates complete music patterns based on specified style, key, and BPM, enabling AI-powered music generation and live coding with Strudel.cc.
Instructions
Generate complete pattern from style
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| bpm | No | Tempo in BPM | |
| key | No | Musical key | |
| style | Yes | Music style (techno/house/dnb/ambient/etc) | 
Input Schema (JSON Schema)
{
  "properties": {
    "bpm": {
      "description": "Tempo in BPM",
      "type": "number"
    },
    "key": {
      "description": "Musical key",
      "type": "string"
    },
    "style": {
      "description": "Music style (techno/house/dnb/ambient/etc)",
      "type": "string"
    }
  },
  "required": [
    "style"
  ],
  "type": "object"
}