Get Evaluation Results

Hand off to an LLM

Fetch evaluation results for a batch of transformations.

Identical behavior to the POST variant; accepts transformation IDs as a comma-separated transformationIDs query parameter. Limited to 100 IDs per request.

GET
/v3/eval/results
x-api-key<token>

Authenticate using API Key in request header

In: header

Query Parameters

transformationIDs*string

Comma-separated list of transformation IDs to fetch results for. Between 1 and 100 IDs per request.

evaluationVersion?string

Optional evaluation version filter.

Response Body

application/json

application/json

curl -X GET "https://api.bem.ai/v3/eval/results?transformationIDs=string"
{
  "results": {},
  "pending": [
    {
      "transformationId": "string",
      "createdAt": "2019-08-24T14:15:22Z"
    }
  ],
  "failed": [
    {
      "transformationId": "string",
      "errorMessage": "string",
      "createdAt": "2019-08-24T14:15:22Z"
    }
  ],
  "errors": {}
}
{
  "message": "string",
  "code": 0,
  "details": {}
}

See also