Member Junction
    Preparing search index...

    A request to RESUME a reviewed session as a NEW live call, emitted by review mode's "Start live session" button. The host (chat area) clears its review state and starts a voice session through the same path the composer's mic uses, passing LastSessionId so the server chains the new session to the reviewed one (restoring saved channel states such as the whiteboard via PriorChannelStatesJson).

    interface RealtimeStartLiveRequest {
        ConversationId: string | null;
        LastSessionId: string;
        TargetAgentId: string;
    }
    Index

    Properties

    ConversationId: string | null

    Conversation the reviewed session was bound to, when any.

    LastSessionId: string

    The reviewed session's id — chained as the new session's lastSessionId.

    TargetAgentId: string

    Agent the resumed session should front (review Config targetAgentID, else the session's AgentID).