Skip to main content
GET
/
v2
/
autoevals
/
model_version_configs
/
{id}
/
statuses
Retrieve evaluation jobs for a Model Version Config
curl --request GET \
  --url https://api.scale.com/v2/autoevals/model_version_configs/{id}/statuses \
  --header 'Authorization: Bearer <token>'
[
  {
    "jobId": "<string>",
    "status": "Pending",
    "libraryName": "<string>",
    "libraryVersion": "<string>",
    "evaluationOptions": {},
    "modelVersionConfig": "<string>",
    "modelParams": {},
    "createdAt": "2023-11-07T05:31:56Z",
    "completedAt": "2023-11-07T05:31:56Z"
  }
]

Authorizations

Authorization
string
header
required

Your API Key is the Bearer token. See the Authentication section to learn how to access your key.

Path Parameters

id
string
required

Response

Successfully retrieved jobs.

jobId
string

Unique identifier for the evaluation job.

status
enum<string>

Current job status.

Available options:
Pending,
InProgress,
Errored,
Completed
libraryName
string

Name of the evaluation library.

libraryVersion
string

Version of the evaluation library.

evaluationOptions
object

Options used for evaluation.

modelVersionConfig
string

ID of the Model Version Config

modelParams
object

Model params overrides.

createdAt
string<date-time>

Timestamp when the job was created.

completedAt
string<date-time> | null

Timestamp when the job was completed.

I