Variable agentPassFailAnswerSchemaConst
agentPassFailAnswerSchema: ZodObject<
{
answer: ZodString;
citations: ZodArray<
ZodObject<
{
documentId: ZodNullable<ZodString>;
fileName: ZodString;
page: ZodNullable<ZodNumber>;
quote: ZodString;
},
$strip,
>,
>;
confidence: ZodNumber;
evidenceTrail: ZodArray<
ZodObject<
{
claim: ZodString;
documentId: ZodNullable<ZodString>;
fileName: ZodNullable<ZodString>;
note: ZodString;
verdict: ZodEnum<
{
not_found: "not_found";
refuted: "refuted";
supported: "supported";
unclear: "unclear";
},
>;
},
$strip,
>,
>;
recommendation: ZodNullable<ZodString>;
shortFormAnswer: ZodString;
status: ZodEnum<
{
fail: "fail";
late: "late";
missing: "missing";
needs_review: "needs_review";
not_applicable: "not_applicable";
not_due_yet: "not_due_yet";
pass: "pass";
},
>;
},
$strict,
> = ...