curl --request POST \
--url http:///%7B{api_host}%7D/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;"
}'