Variable agentCaseChatAnswerSchemaConst
agentCaseChatAnswerSchema: 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,
>,
>;
outcome: ZodEnum<
{
answered: "answered";
cannot_determine: "cannot_determine";
not_in_chart: "not_in_chart";
},
>;
recommendation: ZodNullable<ZodString>;
},
$strict,
> = ...