dashai_describe_dataset
Get dataset details, column types, and sample rows in one call to configure a training run. Combines four API endpoints into a single response, with missing parts returned as null.
Instructions
Returns everything needed to configure a training run over a dataset.
Gathers into a single call what the raw API splits into four (/{id},
/info, /types and /sample), because deciding which columns are input
and which is output requires seeing them together.
Args: params (DescribeDataset): contains: - dataset_id (int): dataset id - include_sample (bool): include sample rows (default True)
Returns: str: JSON {"dataset": {...}, "info": {...}, "column_types": {...}, "sample": [...]} If one part is unavailable it comes back as null instead of failing whole.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |