If you have test case data stored in a CSV file, you can bulk-import it into an Adaline dataset instead of adding rows manually. This is the fastest way to populate a dataset with large volumes of test data for evaluation — including multimodal data like images and PDFs.Documentation Index
Fetch the complete documentation index at: https://www.adaline.ai/docs/llms.txt
Use this file to discover all available pages before exploring further.
Import a CSV file
Open your dataset and click Upload CSV to start the import:
Import behavior
The system handles empty and existing datasets differently:| Dataset state | Import behavior |
|---|---|
| Empty dataset | The first row of the CSV becomes column names. All subsequent rows are added as test cases. |
| Existing columns | The first row of the CSV must match existing column names exactly. Rows are appended to the dataset. |
CSV format and examples
The first row of your CSV is always the header row — these become (or must match) your dataset column names. Every subsequent row is a test case. Column names should match your prompt’s variable names exactly so they map correctly during evaluation.Text-only CSV
A standard CSV where every cell contains plain text:Text and images
To include images in a CSV, use a publicly accessible image URL or a base64-encoded image string as the cell value. Adaline automatically detects the modality.Text, images, and PDFs
Combine all three modalities across different columns:Base64-encoded content
You can include base64-encoded images or PDFs directly in the CSV. This is useful when your files are not publicly hosted:How modality detection works
When Adaline parses a CSV, it inspects each cell value and determines the modality:- Plain text values are treated as text.
- Values starting with
http://orhttps://pointing to image files (.png,.jpg,.jpeg,.gif,.webp) are treated as images. - Values starting with
http://orhttps://pointing to.pdffiles are treated as PDFs. - Values starting with
data:image/are treated as base64-encoded images. - Values starting with
data:application/pdf;base64,are treated as base64-encoded PDFs.
Next steps
Different Modalities
Work with text, images, and PDFs in dataset cells.
Setup Dataset
Create and configure datasets for evaluation.