Member Junction
    Preparing search index...

    Pluggable detector for whether the agent was ADDRESSED in a transcript segment.

    The default implementation (RegexAddressedMatcher) is a fast name/mention regex; an LLM-backed fallback for indirect address ("what does our AI think?") is documented as a future enhancement and would implement this same interface.

    interface IAddressedMatcher {
        IsAddressed(segment: TurnTranscriptSegment): boolean;
    }

    Implemented by

    Index

    Methods

    Methods