EvalCaseDraft
Namespace AgentPrism · Assembly
AgentPrism.Abstractions.dllCarrier for adding a single EvalCase.
public sealed record EvalCaseDraft : IEquatable<EvalCaseDraft>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”EvalCaseDraft()
Section titled “ EvalCaseDraft()”public EvalCaseDraft()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.
public string? ExpectedOutput { get; init; }Property Value
Section titled “Property Value”ExpectedTools
Section titled “ ExpectedTools”The expected tool names.
public IReadOnlyList<string> ExpectedTools { 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”SourceKind
Section titled “ SourceKind”The reason for promotion. null for hand-added cases.
public EvalCaseSource? SourceKind { get; init; }Property Value
Section titled “Property Value”SourceRunId
Section titled “ SourceRunId”The run the case was generated from. null for hand-added cases.
public Guid? SourceRunId { get; init; }Property Value
Section titled “Property Value”Guid?
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(EvalCaseDraft?)
Section titled “ Equals(EvalCaseDraft?)”public bool Equals(EvalCaseDraft? other)Parameters
Section titled “Parameters”other EvalCaseDraft?
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 ==(EvalCaseDraft?, EvalCaseDraft?)
Section titled “ operator ==(EvalCaseDraft?, EvalCaseDraft?)”public static bool operator ==(EvalCaseDraft? left, EvalCaseDraft? right)Parameters
Section titled “Parameters”left EvalCaseDraft?
right EvalCaseDraft?
Returns
Section titled “Returns”operator !=(EvalCaseDraft?, EvalCaseDraft?)
Section titled “ operator !=(EvalCaseDraft?, EvalCaseDraft?)”public static bool operator !=(EvalCaseDraft? left, EvalCaseDraft? right)Parameters
Section titled “Parameters”left EvalCaseDraft?
right EvalCaseDraft?