summarize_dataset
Summarize any dataset with row count, numeric aggregates, and value breakdowns—answer totals and breakdown questions without dumping raw rows.
Instructions
Summarize a dataset with aggregates instead of raw rows.
Use this when the user asks for totals or breakdowns ("how many candidates per stage?", "total inventory value?") - it returns row count, count/min/max/ avg/sum for every numeric column, and value breakdowns for every enum column, without ever dumping rows into the conversation.
Args: dataset: Exact dataset name, e.g. "Inventory".
Returns: {"ok": true, "dataset", "row_count": , "numeric": {"": {"count", "min", "max", "avg", "sum"} or {"count": 0}}, "enums": {"": {"": }}}.
Example: summarize_dataset(dataset="Inventory")
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| dataset | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||