RunJudgment
Namespace AgentPrism · Assembly
AgentPrism.Abstractions.dllThe judge’s verdict.
public sealed record RunJudgment : IEquatable<RunJudgment>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”RunJudgment()
Section titled “ RunJudgment()”public RunJudgment()Properties
Section titled “Properties”JudgeUsage
Section titled “ JudgeUsage”The judge’s own model usage. Included in the cost report.
public RunUsage? JudgeUsage { get; init; }Property Value
Section titled “Property Value”Reason
Section titled “ Reason”A short reason. Written into the RunScore.Comment field.
public string? Reason { get; init; }Property Value
Section titled “Property Value”The score, 0-100. null if the judge could not decide.
public int? Score { get; init; }Property Value
Section titled “Property Value”int?
Remarks
Section titled “Remarks”When no decision can be made, null is returned,
not 0. Zero is a measurement; the absence of a measurement is not.
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(RunJudgment?)
Section titled “ Equals(RunJudgment?)”public bool Equals(RunJudgment? other)Parameters
Section titled “Parameters”other RunJudgment?
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 ==(RunJudgment?, RunJudgment?)
Section titled “ operator ==(RunJudgment?, RunJudgment?)”public static bool operator ==(RunJudgment? left, RunJudgment? right)Parameters
Section titled “Parameters”left RunJudgment?
right RunJudgment?
Returns
Section titled “Returns”operator !=(RunJudgment?, RunJudgment?)
Section titled “ operator !=(RunJudgment?, RunJudgment?)”public static bool operator !=(RunJudgment? left, RunJudgment? right)Parameters
Section titled “Parameters”left RunJudgment?
right RunJudgment?