POST
/
v1
/
evals
curl --request POST \
  --url https://api.lmnr.ai/v1/evals \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "groupName": "<string>"
}'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "projectId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "groupName": "<string>",
  "createdAt": "2023-11-07T05:31:56Z"
}

Description

Create a new evaluation with an optional name and group. If no name is provided, a random name will be generated automatically.

Authorizations

Authorization
string
header
required

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

Body

application/json

Response

200
application/json

Evaluation created successfully

The response is of type object.