nexus-agents - v2.80.0
    Preparing search index...

    Interface InteractionEdge

    Edge in the interaction graph representing a message/interaction.

    interface InteractionEdge {
        from: string;
        to: string;
        interactionType: string;
        timestamp: string;
        outcome: InteractionOutcome;
        durationMs?: number;
        traceId: string;
        weight: number;
    }
    Index

    Properties

    from: string

    Source agent

    to: string

    Target agent

    interactionType: string

    Type of interaction

    timestamp: string

    When interaction occurred

    Outcome of interaction

    durationMs?: number

    Duration if applicable

    traceId: string

    Trace ID for correlation

    weight: number

    Weight for graph algorithms (default 1)