read_file
Read text file contents to access and analyze stored information for file system exploration and data retrieval tasks.
Instructions
Read the contents of a text file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | The file path to read |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "The file path to read",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}