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

    Interface MemoryEntry

    A complete memory entry with all fields.

    interface MemoryEntry {
        key: string;
        value: unknown;
        metadata: MemoryMetadata;
        createdAt: Date;
        accessedAt: Date;
    }
    Index

    Properties

    key: string

    Unique key for the memory

    value: unknown

    The stored value (JSON-serializable)

    metadata: MemoryMetadata

    Associated metadata

    createdAt: Date

    When the entry was created

    accessedAt: Date

    When the entry was last accessed