List Evaluations For A Given Agent
curl --request GET \
  --url http://{api_endpoint}/api/v1/v1/orchestrate/agent/{agent_id}/evaluations \
  --header 'Authorization: Bearer <token>'
{
  "total": 123,
  "page": 123,
  "page_size": 123,
  "evaluations": [
    {
      "id": "<string>",
      "executed_date": "<string>",
      "evaluation_status": "PENDING",
      "number_of_test_cases": 123,
      "executed_by": "<string>",
      "aggregate_metrices": {
        "tool_quality": {
          "average": {
            "value": 123,
            "status": "<string>"
          },
          "accuracy": {
            "value": 123,
            "status": "<string>"
          },
          "relevance": {
            "value": 123,
            "status": "<string>"
          }
        },
        "answer_quality": {
          "average": {
            "value": 123,
            "status": "<string>"
          },
          "relevance": {
            "value": 123,
            "status": "<string>"
          },
          "correctness": {
            "value": 123,
            "status": "<string>"
          },
          "faithfulness": {
            "value": 123,
            "status": "<string>"
          }
        },
        "transaction_completion": {
          "average": {
            "value": 123,
            "status": "<string>"
          },
          "failed": 123,
          "success": 123
        }
      },
      "agent_name": "<string>",
      "agent_description": "<string>",
      "agent_environment": [
        {
          "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "name": "<string>",
          "current_version": 123,
          "voice": {}
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

agent_id
string<uuid>
required

Query Parameters

limit
integer
default:5

Limit the number of results returned

Required range: x >= 1
offset
integer
default:0

Skip the first N results

Required range: x >= 0
sortkey
enum<string>

Sort key

Available options:
executed_date,
number_of_test_cases,
executed_by
sort
enum<string>

Sort order

Available options:
asc,
desc

Response

Successful Response

total
integer
required

Total number of evaluations

page
integer
required

Current page

page_size
integer
required

Number of results per page

evaluations
EvaluationResponse · object[]
required

List of evaluations in this page