@langwatch/scenario
    Preparing search index...

    Interface TunnelReadiness

    Anything that can tell us our public URL is reachable from the edge.

    Structurally satisfied by any tunnel wrapper that exposes the check; the adapter never owns or opens a tunnel itself, it only asks.

    interface TunnelReadiness {
        waitUntilEdgeReachable(): Promise<void>;
    }
    Index