Member Junction
    Preparing search index...

    Interface BridgeRealtimeRuntime

    The runtime handle returned by RealtimeClientSessionService.WireBridgeRealtimeSession — the server long-lived (bridged) counterpart to what PrepareClientSession returns for the browser. The bridge holds this for the life of the session: the observability run ids (for nesting + correlation) and an idempotent Finalize the bridge MUST call on teardown so the co-agent run + prompt run don't dangle in Running. Finalize also runs automatically when the session's Close() is invoked or the connection drops — calling it again is a safe no-op.

    interface BridgeRealtimeRuntime {
        CoAgentRunID?: string;
        Finalize: (success: boolean) => Promise<void>;
        PromptRunID?: string;
    }
    Index

    Properties

    CoAgentRunID?: string

    The MJ: AI Agent Runs row id created for this voice session (delegated runs nest under it).

    Finalize: (success: boolean) => Promise<void>

    Finalizes the co-agent + prompt run. Idempotent; safe to call from multiple teardown paths.

    PromptRunID?: string

    The MJ: AI Prompt Runs row id for the session's system prompt.