Variable aIChatStreamDoneSchemaConst
aIChatStreamDoneSchema: ZodObject<
{
finish_reason: ZodOptional<ZodString>;
run_count: ZodOptional<ZodNumber>;
total_usage: ZodOptional<
ZodRecord<ZodString, ZodType<{} | null, ZodTypeDef, {} | null>>,
>;
usage: ZodOptional<
ZodRecord<ZodString, ZodType<{} | null, ZodTypeDef, {} | null>>,
>;
},
"strip",
ZodTypeAny,
{
finish_reason?: string;
run_count?: number;
total_usage?: Record<string, {} | null>;
usage?: Record<string, {} | null>;
},
{
finish_reason?: string;
run_count?: number;
total_usage?: Record<string, {} | null>;
usage?: Record<string, {} | null>;
},
> = ...
Runtime validator for AIChatStreamDone.