Skip to content

Instantly share code, notes, and snippets.

@dontpaniclabsgists
Created November 20, 2023 20:21
Show Gist options
  • Save dontpaniclabsgists/04df1efd58860d055fd7e2fc0f3b29df to your computer and use it in GitHub Desktop.
Save dontpaniclabsgists/04df1efd58860d055fd7e2fc0f3b29df to your computer and use it in GitHub Desktop.
{
"name": "play_notes",
"parameters": {
"type": "object",
"properties": {
"notes": {
"type": "array",
"description": "The ordered notes and pauses to play",
"items": {
"type": "object",
"properties": {
"octave": {
"type": "integer"
},
"note": {
"type": "string"
},
"duration": {
"type": "number",
"minimum": 0
}
},
"required": [
"duration"
],
"additionalProperties": false
}
}
},
"required": [
"notes"
]
},
"description": "Play notes at octaves for a duration or pause for a duration between notes"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment