/** * ask_question Tool 输入 Schema。 * * 关键点(中文):文本问题不接受候选项;单选和多选问题必须提供至少一个候选项, * 从模型输入边界消除无法渲染或无法校验的 Question Interaction。 */ import { z } from "zod"; /** ask_question Tool 的运行时输入校验 Schema。 */ export declare const ask_questions_input_schema: z.ZodObject<{ title: z.ZodString; questions: z.ZodArray; }, z.core.$strict>, z.ZodObject<{ question: z.ZodString; type: z.ZodEnum<{ single_select: "single_select"; multi_select: "multi_select"; }>; options: z.ZodArray; }, z.core.$strict>>; }, z.core.$strict>], "type">>; }, z.core.$strict>; //# sourceMappingURL=AskQuestionsToolSchemas.d.ts.map