diff --git a/functions/read_file.json b/functions/read_file.json new file mode 100644 index 0000000..1b0ffae --- /dev/null +++ b/functions/read_file.json @@ -0,0 +1,18 @@ +{ + "name": "read_file", + "description": "Načte soubor o maximální velikosti 10kB a vrátí jeho obsah (případně zkrácený).", + "strict": true, + "parameters": { + "type": "object", + "required": [ + "path" + ], + "properties": { + "path": { + "type": "string", + "description": "Cesta k souboru, který se má přečíst." + } + }, + "additionalProperties": false + } +} \ No newline at end of file