Skip to main content

DatasetColumnsClient

adaline.datasets.columns manages the column schema of a dataset — add, rename, or delete columns, and resolve dynamic columns whose values are produced by prompts, HTTP requests, or dynamic functions. Every method is async.

Access

The class is also exported directly:
Types from adaline_api:
Column type can be input, output, metadata, or a dynamic type such as prompt, api, or dynamic-function.

create()

Append one or more column definitions to a dataset.

Parameters

Example


update()

Change a column’s name, type, or settings.

Example


delete()

Delete a column from a dataset. All row values for this column are dropped.

fetch_dynamic()

Trigger on-demand resolution for dynamic columns. Returns the resolved values without persisting them.

Parameters

Example


See Also