From 9c5e7ae3b4e2886012938903de86f9a22d048e09 Mon Sep 17 00:00:00 2001 From: sinuhet Date: Thu, 20 Mar 2025 02:39:10 +0100 Subject: [PATCH] =?UTF-8?q?P=C5=99id=C3=A1n=C3=AD=20funkc=C3=AD=20z=20Open?= =?UTF-8?q?AI=20API?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- functions/execute_shell_command.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 functions/execute_shell_command.json diff --git a/functions/execute_shell_command.json b/functions/execute_shell_command.json new file mode 100644 index 0000000..e0f1639 --- /dev/null +++ b/functions/execute_shell_command.json @@ -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" + ] + } +} \ No newline at end of file