read_file
Retrieve and display the complete content of any file stored in Dropbox by specifying its full path, with optional character limit control.
Instructions
Read and return the full content of a file.
Args: file_path: Full path to the file in Dropbox max_length: Maximum characters to return (0 for no limit)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file_path | Yes | ||
max_length | No |
Input Schema (JSON Schema)
{
"properties": {
"file_path": {
"title": "File Path",
"type": "string"
},
"max_length": {
"default": 5000,
"title": "Max Length",
"type": "integer"
}
},
"required": [
"file_path"
],
"type": "object"
}