toolCallPartSchema: ZodObject<
    {
        tool_call: ZodObject<
            {
                arguments: ZodString;
                name: ZodString;
                type: ZodLiteral<"function">;
            },
            "strip",
            ZodTypeAny,
            { arguments: string; name: string; type: "function" },
            { arguments: string; name: string; type: "function" },
        >;
        tool_call_id: ZodString;
        type: ZodLiteral<"tool_call">;
    },
    "strip",
    ZodTypeAny,
    {
        tool_call: { arguments: string; name: string; type: "function" };
        tool_call_id: string;
        type: "tool_call";
    },
    {
        tool_call: { arguments: string; name: string; type: "function" };
        tool_call_id: string;
        type: "tool_call";
    },
> = ...