load_dataset
Load data from CSV files, URLs, or inline strings into memory, returning a handle for subsequent data quality validation.
Instructions
Load data (CSV string, URL, or local file) into memory and return a handle.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| source | Yes | Path to file, URL, or inline CSV string | |
| max_rows | No | Maximum rows to read (None for all) | |
| use_polars | No | Use ``polars.scan_csv`` for reading if available | |
| source_type | No | Type of source - "file", "url", or "inline" | file |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |