Variable questionSchemaConst
questionSchema: ZodObject<
{
kind: ZodEnum<
{ contradiction: "contradiction"; gap: "gap"; unclear: "unclear" },
>;
questionId: ZodString;
quote: ZodOptional<
ZodObject<{ passageId: ZodString; text: ZodString }, $strip>,
>;
term: ZodOptional<ZodString>;
text: ZodString;
},
$strip,
> = ...
A teach-back question after it passed the quote check.