Přidání funkcí z OpenAI API

This commit is contained in:
sinuhet 2025-03-20 02:39:10 +01:00
parent 2d76d82572
commit 9c5e7ae3b4

View File

@ -0,0 +1,18 @@
{
"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"
]
}
}