EvalCase
AgentPrism.Abstractions.dllA single test case inside an EvalSuite.
public sealed record EvalCase : IEquatable<EvalCase>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”EvalCase()
Section titled “ EvalCase()”public EvalCase()Properties
Section titled “Properties”Context
Section titled “ Context”Text given to the model as extra context.
public string? Context { get; init; }Property Value
Section titled “Property Value”ExpectedOutput
Section titled “ ExpectedOutput”The expected output. Referenced by the containsExpected check.
public string? ExpectedOutput { get; init; }Property Value
Section titled “Property Value”ExpectedTools
Section titled “ ExpectedTools”The tool names looked up by the toolCalled check. An empty list
does not mean the check accepts any tool call — the check is still
defined separately in the suite’s checks field.
public IReadOnlyList<string> ExpectedTools { get; init; }Property Value
Section titled “Property Value”The case identifier.
public Guid Id { get; init; }Property Value
Section titled “Property Value”PromotedAt
Section titled “ PromotedAt”The promotion time. null when hand-written.
public DateTimeOffset? PromotedAt { get; init; }Property Value
Section titled “Property Value”The query text sent to the agent.
public required string Query { get; init; }Property Value
Section titled “Property Value”The sequence number within the suite (starts at 0).
public required int Seq { get; init; }Property Value
Section titled “Property Value”SourceKind
Section titled “ SourceKind”The reason for promotion. null when hand-written.
public EvalCaseSource? SourceKind { get; init; }Property Value
Section titled “Property Value”SourceRunId
Section titled “ SourceRunId”The run the case was generated from. null when hand-written.
public Guid? SourceRunId { get; init; }Property Value
Section titled “Property Value”Guid?
SuiteId
Section titled “ SuiteId”The identifier of the suite this case belongs to.
public required Guid SuiteId { 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(EvalCase?)
Section titled “ Equals(EvalCase?)”public bool Equals(EvalCase? other)Parameters
Section titled “Parameters”other EvalCase?
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 ==(EvalCase?, EvalCase?)
Section titled “ operator ==(EvalCase?, EvalCase?)”public static bool operator ==(EvalCase? left, EvalCase? right)Parameters
Section titled “Parameters”left EvalCase?
right EvalCase?
Returns
Section titled “Returns”operator !=(EvalCase?, EvalCase?)
Section titled “ operator !=(EvalCase?, EvalCase?)”public static bool operator !=(EvalCase? left, EvalCase? right)Parameters
Section titled “Parameters”left EvalCase?
right EvalCase?