tune-basic-toolset
Version:
Basic toolset for tune
17 lines • 378 B
JSON
{
"description": "Append text to a file",
"parameters": {
"type": "object",
"properties": {
"filename": {
"type": "string",
"description": "Name of the file to append text to"
},
"text": {
"type": "string",
"description": "Text content to append to the file"
}
},
"required": ["filename", "text"]
}
}