curl --request POST \
--url https://{host}.freeplay.ai/api/v2/projects/{project_id}/datasets/id/{dataset_id}/test-cases \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"examples": [
{
"inputs": {},
"history": [
{
"content": "<string>",
"role": "user"
}
],
"output": "<string>",
"metadata": {},
"media_inputs": {}
}
]
}
'