write_file
Save text content to files using this file writing tool. Create or update documents by specifying file names and content for storage and organization.
Instructions
Write content to a file
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | The file key/name | |
| content | Yes | The content to write |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "The content to write",
"type": "string"
},
"key": {
"description": "The file key/name",
"type": "string"
}
},
"required": [
"key",
"content"
],
"type": "object"
}