file_write
Write content to files for storing notes, documents, and operational data within the AI Ops Hub environment.
Instructions
Записать содержимое в файл
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| content | Yes | Содержимое для записи | |
| path | Yes | Путь к файлу | 
Input Schema (JSON Schema)
{
  "properties": {
    "content": {
      "description": "Содержимое для записи",
      "type": "string"
    },
    "path": {
      "description": "Путь к файлу",
      "type": "string"
    }
  },
  "required": [
    "path",
    "content"
  ],
  "type": "object"
}