fast_read_file
Read file contents with auto-chunking for large files. Specify path, optional offsets, line ranges, encoding, or use continuation token for paginated reads.
Instructions
Reads a file (with auto-chunking support)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | File path to read | |
| start_offset | No | Starting byte offset | |
| max_size | No | Maximum size to read | |
| line_start | No | Starting line number | |
| line_count | No | Number of lines to read | |
| encoding | No | Text encoding | utf-8 |
| continuation_token | No | Continuation token from a previous call | |
| auto_chunk | No | Enable auto-chunking |