read_file
Read CSV or Excel files with chunking support for large datasets. Specify sheet names, row offsets, and limits to extract data efficiently.
Instructions
Read an entire CSV or Excel file with optional chunking for large files
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filePath | Yes | Path to the CSV or Excel file | |
| sheet | No | Sheet name for Excel files (optional, defaults to first sheet) | |
| offset | No | Starting row index for chunked reading (0-based, optional) | |
| limit | No | Maximum number of rows to return (optional, enables chunking) |