Dataset
Dataset
The unique identifier of the dataset. This is an immutable field generated when the dataset is created.
The date and time when the dataset was created, expressed in ISO 8601 format.
A dictionary containing additional data associated with the dataset. This can include user-defined key-value pairs that provide more context or details about the dataset.
An optional name for the dataset. This can be used to give a descriptive, human-readable title to the dataset for easier identification.
An optional description field that can provide more detailed information about the dataset, such as its purpose, contents, or specific characteristics.
An optional list of items contained within the dataset. Each item in the list is a dictionary representing a specific data entry in the dataset.
Create a dataset
Params
An optional name for the dataset. This can be used to give a descriptive, human-readable title to the dataset for easier identification.
An optional description field that can provide more detailed information about the dataset, such as its purpose, contents, or specific characteristics.
A dictionary containing additional data associated with the dataset. This can include user-defined key-value pairs that provide more context or details about the dataset.
Response
Return a Dataset
Update a dataset
Params
The unique identifier of the dataset. This is an immutable field generated when the dataset is created.
An optional name for the dataset. This can be used to give a descriptive, human-readable title to the dataset for easier identification.
An optional description field that can provide more detailed information about the dataset, such as its purpose, contents, or specific characteristics.
A dictionary containing additional data associated with the dataset. This can include user-defined key-value pairs that provide more context or details about the dataset.
Response
Return a Dataset
Get a dataset
Params
The unique identifier of the dataset. This is an immutable field generated when the dataset is created.
Response
Return a Dataset
Delete a dataset
Params
The unique identifier of the dataset. This is an immutable field generated when the dataset is created.
Response
Return a Dataset
DatasetItem
The unique identifier of the dataset item. Each item within a dataset has its own unique ID.
The date and time when the dataset item was created, expressed in ISO 8601 format.
The identifier of the dataset to which this item belongs. Links the item to its parent dataset.
A dictionary containing additional data associated with this dataset item. This can include specific details relevant to the item.
The input data for this dataset item. Typically contains the parameters or information that forms the LLM request.
The optional output data for this dataset item. Represents the result or outcome associated with the item’s input.
An optional list of intermediary steps involved in the output. This can include any processing steps or intermediate results. They are automatically generated when using “steps” to build a dataset.
Create a dataset item
Params
The identifier of the dataset to which this item belongs.
The input data for this dataset item. Typically contains the parameters or information that forms the LLM request.
The optional output data for this dataset item. Represents the result or outcome associated with the item’s input.
A dictionary containing additional data associated with this dataset item. This can include specific details relevant to the item.
Response
Return a DatasetItem
Add a step to a dataset
Params
The identifier of the dataset to which this item belongs.
The identifier of the step created beforehand.
A dictionary containing additional data associated with this dataset item. This can include specific details relevant to the item.
Response
Return a DatasetItem
Get a dataset item
Params
The unique identifier of the dataset item. Each item within a dataset has its own unique ID.
Response
Return a DatasetItem
Delete a dataset item
Params
The unique identifier of the dataset item. Each item within a dataset has its own unique ID.
Response
Return a DatasetItem
Was this page helpful?