anthropicToolCallSchema: 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" },
> = ...

The schema for an Anthropic tool call, this is what a message that calls a tool looks like