GET
/
agents
/
{agent_id}
/
evaluate
/
jobs
curl --request GET \
  --url https://api.contextual.ai/v1/agents/{agent_id}/evaluate/jobs \
  --header 'Authorization: Bearer <token>'
{
  "evaluation_rounds": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "user_email": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "processing_started_at": "2023-11-07T05:31:56Z",
      "finished_at": "2023-11-07T05:31:56Z",
      "status": "pending",
      "summary_results": {},
      "num_predictions": 123,
      "num_failed_predictions": 123,
      "num_successful_predictions": 123,
      "num_processed_predictions": 123,
      "results_dataset_name": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

agent_id
string
required

ID of agent for which to retrieve evaluation jobs

Response

200
application/json
Successful Response

Response from List Evaluations request

evaluation_rounds
object[]
required

List of evaluation results

Metadata of an evaluation round