EvalRunCompletion
Namespace AgentPrism · Assembly
AgentPrism.Abstractions.dllThe information needed to finalize a run.
public sealed record EvalRunCompletion : IEquatable<EvalRunCompletion>Inheritance
Section titled “Inheritance”Implements
Section titled “Implements”Inherited Members
Section titled “Inherited Members”object.GetType(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()
Constructors
Section titled “Constructors”EvalRunCompletion()
Section titled “ EvalRunCompletion()”public EvalRunCompletion()Properties
Section titled “Properties”CompletedAt
Section titled “ CompletedAt”The completion time (UTC).
public required DateTimeOffset CompletedAt { get; init; }Property Value
Section titled “Property Value”EvalRunId
Section titled “ EvalRunId”The run identifier.
public required Guid EvalRunId { get; init; }Property Value
Section titled “Property Value”Failed
Section titled “ Failed”The number of remaining (failed) cases.
public required int Failed { get; init; }Property Value
Section titled “Property Value”InputTokens
Section titled “ InputTokens”The total input token count.
public long? InputTokens { get; init; }Property Value
Section titled “Property Value”long?
OutputTokens
Section titled “ OutputTokens”The total output token count.
public long? OutputTokens { get; init; }Property Value
Section titled “Property Value”long?
Passed
Section titled “ Passed”The number of cases that passed.
public required int Passed { get; init; }Property Value
Section titled “Property Value”Status
Section titled “ Status”The final status.
public required EvalRunStatus Status { get; init; }Property Value
Section titled “Property Value”The total number of cases.
public required int Total { get; init; }Property Value
Section titled “Property Value”Methods
Section titled “Methods”Equals(object?)
Section titled “ Equals(object?)”public override bool Equals(object? obj)Parameters
Section titled “Parameters”obj object?
Returns
Section titled “Returns”Equals(EvalRunCompletion?)
Section titled “ Equals(EvalRunCompletion?)”public bool Equals(EvalRunCompletion? other)Parameters
Section titled “Parameters”other EvalRunCompletion?
Returns
Section titled “Returns”GetHashCode()
Section titled “ GetHashCode()”public override int GetHashCode()Returns
Section titled “Returns”ToString()
Section titled “ ToString()”public override string ToString()Returns
Section titled “Returns”Operators
Section titled “Operators”operator ==(EvalRunCompletion?, EvalRunCompletion?)
Section titled “ operator ==(EvalRunCompletion?, EvalRunCompletion?)”public static bool operator ==(EvalRunCompletion? left, EvalRunCompletion? right)Parameters
Section titled “Parameters”left EvalRunCompletion?
right EvalRunCompletion?
Returns
Section titled “Returns”operator !=(EvalRunCompletion?, EvalRunCompletion?)
Section titled “ operator !=(EvalRunCompletion?, EvalRunCompletion?)”public static bool operator !=(EvalRunCompletion? left, EvalRunCompletion? right)Parameters
Section titled “Parameters”left EvalRunCompletion?
right EvalRunCompletion?