Member Junction
    Preparing search index...

    Interface BridgeTranscriptLineInput

    One transcript line the engine emits (structurally matches BridgeTranscriptLine in @memberjunction/ai-bridge-server; mirrored here to avoid a package dependency, resolved structurally at the resolver binding site).

    interface BridgeTranscriptLineInput {
        AgentID?: string;
        AgentSessionID: string;
        IsAgentSpeech: boolean;
        RoomKey: string;
        SpeakerParticipantID?: string;
        Text: string;
    }
    Index

    Properties

    AgentID?: string

    The scribe's agent id, when known.

    AgentSessionID: string

    The scribe's agent-session id (attribution for its own speech).

    IsAgentSpeech: boolean

    true for the scribe's OWN speech, false for anything it heard.

    RoomKey: string

    The room grouping (driver external connection id) — one room = one unified transcript.

    SpeakerParticipantID?: string

    The speaker's participant id (the scribe's own bot id for its speech; absent for heard speech).

    Text: string

    The final transcript text.