set_context
Define a context to influence creative rhythms by specifying its type and what it affects, such as lines, loops, or vibes.
Instructions
Set the context that influences rhythms
Input Schema
Name | Required | Description | Default |
---|---|---|---|
influences | No | What this context influences (lines/loops/vibes names) | |
name | Yes | Context name | |
type | Yes | Type of context |
Input Schema (JSON Schema)
{
"properties": {
"influences": {
"description": "What this context influences (lines/loops/vibes names)",
"items": {
"type": "string"
},
"type": "array"
},
"name": {
"description": "Context name",
"type": "string"
},
"type": {
"description": "Type of context",
"enum": [
"creative",
"analytical",
"meditative",
"collaborative",
"experimental"
],
"type": "string"
}
},
"required": [
"name",
"type"
],
"type": "object"
}