import { z } from "zod"; export const ToolUseContentSchema = z.object({ type: z.literal("tool_use"), id: z.string(), name: z.string(), input: z.record(z.string(), z.unknown()), });