read_large_file_chunk
Read a specific chunk of a large file using intelligent chunking based on file type, without loading the entire file into memory. Optionally set chunk size and include line numbers.
Instructions
Read a specific chunk of a large file with intelligent chunking based on file type. Automatically determines optimal chunk size.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filePath | Yes | Absolute path to the file | |
| chunkIndex | No | Zero-based chunk index to read (default: 0) | |
| linesPerChunk | No | Number of lines per chunk (optional, auto-detected if not provided) | |
| includeLineNumbers | No | Include line numbers in output (default: false) |