Variable summaryQuestionTypeSchemaConst
summaryQuestionTypeSchema: ZodObject<
{
answer: ZodString;
citation: ZodNullable<
ZodArray<
ZodObject<
{
quote: ZodString;
source: ZodObject<
{ name: ZodString; page: ZodNullable<ZodCoercedNumber<unknown>> },
$strip,
>;
},
$strip,
>,
>,
>;
type: ZodLiteral<"summary">;
},
$strict,
> = ...