curl --request POST \
--url https://api.primeintellect.ai/api/v1/evaluations/{evaluation_id}/samples \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"samples": [
{
"example_id": 123,
"reward": 123,
"task": "<string>",
"answer": "<string>",
"prompt": [
{
"role": "<string>",
"content": "<string>",
"tool_calls": [],
"tool_call_id": ""
}
],
"completion": [
{
"role": "<string>",
"content": "<string>",
"tool_calls": [],
"tool_call_id": ""
}
],
"score": 123,
"correct": true,
"num_steps": 123,
"total_time": 123,
"latency_ms": 123,
"rollout_number": 123,
"metadata": {}
}
]
}
'