File size: 956 Bytes
5a46e5d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | [
{
"additional_arguments": false,
"arguments": {},
"description": "Turn on the device flashlight.",
"name": "turn_on_flashlight",
"required": [],
"side_effecting": true
},
{
"additional_arguments": false,
"arguments": {},
"description": "Open the device Wi-Fi settings screen.",
"name": "open_wifi_settings",
"required": [],
"side_effecting": false
},
{
"additional_arguments": false,
"arguments": {
"body": {
"description": "Email body text.",
"type": "string"
},
"subject": {
"description": "Email subject line.",
"type": "string"
},
"to": {
"description": "Recipient email address.",
"type": "string"
}
},
"description": "Draft an email for an external mail client.",
"name": "send_email",
"required": [
"to",
"subject",
"body"
],
"side_effecting": true
}
]
|