Robovojtik/functions/execute_shell_command.json

18 lines
384 B
JSON

{
"name": "execute_shell_command",
"description": "Spustí shellový příkaz a vrátí jeho výstup.",
"strict": true,
"parameters": {
"type": "object",
"properties": {
"command": {
"type": "string",
"description": "Shellový příkaz k vykonání."
}
},
"additionalProperties": false,
"required": [
"command"
]
}
}