Skip to main content
POST
/
v1
/
agents
/
evaluate-evidence
Evaluate evidence with AI
curl --request POST \
  --url https://api.app.chainloop.dev/v1/agents/evaluate-evidence \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "digest": "<string>",
  "content": "aSDinaTvuI8gbWludGxpZnk=",
  "prompt": "<string>",
  "policy_structured_result": true
}
'
{
  "operation_id": "operation_id"
}

Authorizations

Authorization
string
header
required

Bearer token for authentication

Body

application/json
digest
string
content
string<byte>

Raw evidence content to evaluate directly. Content exceeding the internal limit will be truncated server-side.

prompt
string
policy_structured_result
boolean

Response

A successful response.

operation_id
string