curl --request POST \
--url 'http://{{api_host}}/agents/{AGENT_ID}/verifyOutput' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"task": "Fix the issue on this calculation",
"previous": "const i = 1+1; i = 2;",
"proposal": "const i = 1++; i = 2;"
}
'