table_inspect
Inspect tabular data for structural problems and data quality issues, returning column summaries and problem lists to guide fixes before transformation.
Instructions
Report the structure and data quality of a table before working on it.
Returns row and column counts, a per-column summary (inferred type, empty count, distinct values, most frequent values) and a list of problems such as duplicate headers, ragged rows, fully duplicated rows and empty rows. Call this first when a table looks suspicious, then fix it with table_transform.
Args: text: The whole table as text. from_format: How to read the input. markdown, csv, tsv, json or html.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | ||
| from_format | No | markdown |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |