file_read
Read file contents to access local documents and notes for developer operational tasks. Provide the file path to retrieve text and data.
Instructions
Читать содержимое файла
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| path | Yes | Путь к файлу | 
Input Schema (JSON Schema)
{
  "properties": {
    "path": {
      "description": "Путь к файлу",
      "type": "string"
    }
  },
  "required": [
    "path"
  ],
  "type": "object"
}