Creating a Dataset
To create a dataset, navigate to theDatasets
tab in the Datawizz dashboard and click on the Create Dataset
button. You can choose a name for your new dataset and a description to help you remember what it’s for.

Importing Datawizz Logs
Once inside your dataset, you can clickImport Logs
to import logs from Datawizz endpoints. You can use the filters there to narrow down the logs that’ll be imported.

Importing Logs from a CSV File
You can also import logs from a CSV file. Click onImport CSV
and select a file to upload. The file must include input
and output
columns, where input
is the message(s) sent to the model and output
is the response.
Datawizz support two formats for the input
and output
columns:
- text - in this mode, the column should contain the raw text of the message. Datawizz will automaticall format the input message with the role ‘user’ and the output message with the role ‘assistant’.
- full - in this mode, the column should contain the full JSON object of the message. This allows you to specify the role and other metadata for the message.
- The input column should be a JSON array of objects, where each object has a
content
field and arole
field. For example:
- The output column should be a JSON object with a
content
field and arole
field. For example:
- The input column should be a JSON array of objects, where each object has a
