Skip to content

EvalRunStatus

Namespace AgentPrism · Assembly AgentPrism.Abstractions.dll

The status of an eval run.

[JsonConverter(typeof(JsonStringEnumConverter<EvalRunStatus>))]
public enum EvalRunStatus

Cancelled = 4

The run was cancelled.

Completed = 2

The run completed.

Failed = 3

The run failed (for example, the agent or suite was not found).

Pending = 0

The run is queued, execution has not started yet.

Running = 1

The run is currently executing.

Written as a name in JSON, stored as smallint in the database. The value order must not change — only append.