Přidat functions/read_file.json

This commit is contained in:
sinuhet 2025-03-20 02:42:07 +01:00
parent 3f527022e6
commit 49d93096d4

18
functions/read_file.json Normal file
View File

@ -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
}
}