read_csv
Read a CSV file and return its contents as formatted text. Specify delimiter (default comma) and whether the first row is a header.
Instructions
Read a CSV file and return its contents.
Args: file_path: Path to the CSV file delimiter: Column delimiter (default comma) has_header: Whether the first row is a header
Returns: CSV contents as formatted text or error message
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| delimiter | No | , | |
| file_path | Yes | ||
| has_header | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |