/** * Plugin tool 输入 schema。 * * 关键点(中文) * - plugin_call 是 agent 内置的最低层 plugin action 入口。 * - plugin_call.payload 是透传给具体 plugin action 的 JSON object。 * - 这里不用 Zod 表达 payload 的开放对象语义,避免 JSON Schema * 转换后把 additionalProperties 收窄为 false。 */ import { z } from "zod"; export declare const plugin_call_input_schema: { type: string; required: string[]; additionalProperties: boolean; properties: { plugin: { type: string; description: string; }; action: { type: string; description: string; }; payload: { type: string; additionalProperties: boolean; default: {}; description: string; }; }; }; export declare const plugin_read_input_schema: z.ZodObject<{ plugin: z.ZodOptional; action: z.ZodOptional; }, z.core.$strip>; //# sourceMappingURL=PluginToolSchemas.d.ts.map