write_file
Write content to a file at a specified path for data storage, configuration management, or output generation.
Instructions
Write content to a file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | The content to write to the file | |
path | Yes | The path to the file to write |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "The content to write to the file",
"type": "string"
},
"path": {
"description": "The path to the file to write",
"type": "string"
}
},
"required": [
"path",
"content"
],
"type": "object"
}