Member Junction
    Preparing search index...

    The input to a single TurnTakingPolicy.EvaluateTurn call.

    interface TurnEvaluationInput {
        ChatAvailable?: boolean;
        HumanSpeaking?: boolean;
        Segment: TurnTranscriptSegment;
    }
    Index

    Properties

    ChatAvailable?: boolean

    Whether the bridge supports posting to the meeting chat. Hybrid mode degrades to plain passive when this is false. Defaults to false when omitted.

    HumanSpeaking?: boolean

    Whether a human is currently speaking on the endpoint. When true, Active mode never fires (no barging over a live speaker). Defaults to false when omitted.

    The transcript segment that just landed (the one the policy reacts to).