read_file
Access and retrieve the contents of files from the local file system using a specified path to enable data reading and processing operations.
Instructions
Read the contents of a file
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| path | Yes | The path to the file to read | 
Input Schema (JSON Schema)
{
  "properties": {
    "path": {
      "description": "The path to the file to read",
      "type": "string"
    }
  },
  "required": [
    "path"
  ],
  "type": "object"
}