EvalRunStatus
Namespace AgentPrism · Assembly
AgentPrism.Abstractions.dllThe status of an eval run.
[JsonConverter(typeof(JsonStringEnumConverter<EvalRunStatus>))]public enum EvalRunStatusFields
Section titled “Fields”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.
Remarks
Section titled “Remarks”Written as a name in JSON, stored as smallint in the database. The
value order must not change — only append.