Arize Phoenix TS
    Preparing search index...
    phoenixToolChoiceToOpenAI: ZodPipe<
        ZodUnion<
            readonly [
                ZodObject<{ type: ZodLiteral<"none"> }, $strip>,
                ZodObject<{ type: ZodLiteral<"zero_or_more"> }, $strip>,
                ZodObject<{ type: ZodLiteral<"one_or_more"> }, $strip>,
                ZodObject<
                    { function_name: ZodString; type: ZodLiteral<"specific_function"> },
                    $strip,
                >,
            ],
        >,
        ZodTransform<
            | "none"
            | "auto"
            | "required"
            | { function: { name: string }; type: "function" },

                | { type: "none" }
                | { type: "zero_or_more" }
                | { type: "one_or_more" }
                | { function_name: string; type: "specific_function" },
        >,
    > = ...