Skip to main content
PUT
/
api
/
v1
/
evaluations
/
{evaluation_id}
Update Evaluation
curl --request PUT \
  --url https://api.primeintellect.ai/api/v1/evaluations/{evaluation_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "description": "<string>",
  "tags": [
    "<string>"
  ],
  "metadata": {},
  "metrics": {},
  "model_name": "<string>",
  "dataset": "<string>",
  "framework": "<string>",
  "task_type": "<string>",
  "inference_model": "<string>",
  "eval_config": {
    "num_examples": 4503599627370495,
    "rollouts_per_example": 1024,
    "env_args": {}
  }
}'
{
  "evaluation_id": "<string>",
  "name": "<string>",
  "status": "PENDING",
  "updated_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

evaluation_id
string
required

Body

application/json

Request to update an existing evaluation

name
string | null

Name of the evaluation

description
string | null

Description of the evaluation

tags
string[] | null

Tags for categorization

metadata
object | null

Additional metadata

metrics
object | null

High-level metrics summary

model_name
string | null

Model name

dataset
string | null

Dataset name

framework
string | null

Framework used

task_type
string | null

Type of task

inference_model
string | null

Prime Inference model ID

eval_config
object | null

Hosted evaluation configuration

Response

Successful Response

Response after updating an evaluation

evaluation_id
string
required
name
string
required
status
enum<string>
required

Evaluation status enum

Available options:
PENDING,
RUNNING,
COMPLETED,
FAILED,
TIMEOUT
updated_at
string<date-time>
required