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

    Interface MemoryPayload

    Payload for memory operation events.

    interface MemoryPayload {
        type: "memory";
        operation: "write" | "read";
        memoryType: string;
        key?: string;
        sizeBytes?: number;
    }
    Index

    Properties

    type: "memory"
    operation: "write" | "read"
    memoryType: string
    key?: string
    sizeBytes?: number