/** * 文件工具输入 schema。 * * 关键点(中文) * - schema 只描述模型可调用协议,不混入路径与文件系统逻辑。 * - 参数名统一采用 snake_case,与现有 Shell tools 保持一致。 */ import { z } from "zod"; /** read 工具输入 schema。 */ export declare const read_file_tool_input_schema: z.ZodObject<{ file_path: z.ZodString; offset: z.ZodDefault>; limit: z.ZodDefault>; }, z.core.$strip>; /** write 工具输入 schema。 */ export declare const write_file_tool_input_schema: z.ZodObject<{ file_path: z.ZodString; content: z.ZodString; overwrite: z.ZodDefault>; }, z.core.$strip>; /** 单项 edit 输入 schema。 */ export declare const file_edit_operation_schema: z.ZodObject<{ old_text: z.ZodString; new_text: z.ZodString; }, z.core.$strip>; /** edit 工具输入 schema。 */ export declare const edit_file_tool_input_schema: z.ZodObject<{ file_path: z.ZodString; edits: z.ZodArray>; expected_sha256: z.ZodOptional; }, z.core.$strip>; //# sourceMappingURL=FileToolSchemas.d.ts.map