curl --request PUT \
--url https://api.primeintellect.ai/api/v1/evaluations/{evaluation_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"description": "<string>",
"tags": [
"<string>"
],
"metadata": {},
"metrics": {},
"model_name": "<string>",
"dataset": "<string>",
"framework": "<string>",
"task_type": "<string>",
"inference_model": "<string>",
"eval_config": {
"num_examples": 4503599627370495,
"rollouts_per_example": 1024,
"env_args": {},
"allow_sandbox_access": false,
"allow_instances_access": false,
"allow_tunnel_access": false,
"timeout_minutes": 780,
"custom_secrets": {},
"sampling_args": {},
"max_concurrent": 4503599627370496,
"max_retries": 4503599627370495,
"state_columns": [
"<string>"
],
"independent_scoring": false,
"verbose": false,
"headers": [
"<string>"
],
"extra_env_kwargs": {},
"api_client_type": "<string>",
"api_base_url": "<string>",
"api_key_var": "<string>"
},
"is_public": true
}
'