dashai_describe_dataset
Retrieve complete dataset details including schema, sample rows, and column types in a single call, eliminating the need to make multiple API requests.
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 |