anthropicToolCallsSchema: ZodArray<
    ZodObject<
        {
            id: ZodString;
            input: ZodType<JSONLiteral, ZodTypeDef, JSONLiteral>;
            name: ZodString;
            type: ZodLiteral<"tool_use">;
        },
        "strip",
        ZodTypeAny,
        { id: string; input: JSONLiteral; name: string; type: "tool_use" },
        { id: string; input: JSONLiteral; name: string; type: "tool_use" },
    >,
    "many",
> = ...

The zod schema for multiple Anthropic tool calls