POST
/
v1
/
evals
/
{eval_id}
/
datapoints
/
{datapoint_id}
curl --request POST \
  --url https://api.lmnr.ai/v1/evals/{eval_id}/datapoints/{datapoint_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "executorOutput": "<any>",
  "scores": {}
}'
"3c90c3cc-0d44-4b50-8888-8dd25736052a"

Description

Update a specific evaluation datapoint with new executor output and scores.

Authorizations

Authorization
string
header
required

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

Path Parameters

eval_id
string
required

The UUID of the evaluation

datapoint_id
string
required

The UUID of the datapoint

Body

application/json

Response

200
application/json

Evaluation datapoint updated successfully

The UUID of the datapoint