actrone-memory
    Preparing search index...

    Interface MemoryEntry

    A single long-term memory entry (the L2 semantic tier).

    interface MemoryEntry {
        id: string;
        agentId: string;
        sessionId: string;
        content: string;
        contentType: ContentType;
        embedding?: readonly number[];
        importanceScore: number;
        topicTags: readonly string[];
        tokenCount: number;
        timestamp: string;
        sourceTurnIds: readonly string[];
        source: MemorySource;
        sensitivity: Sensitivity;
        relevanceScore?: number;
    }
    Index
    id: string
    agentId: string
    sessionId: string
    content: string
    contentType: ContentType
    embedding?: readonly number[]

    The embedding vector, when the entry has been embedded.

    importanceScore: number

    Importance 0.0-1.0; higher surfaces more readily.

    topicTags: readonly string[]
    tokenCount: number
    timestamp: string

    ISO-8601 creation timestamp.

    sourceTurnIds: readonly string[]

    Turn IDs this entry was summarised from, when applicable.

    source: MemorySource

    Provenance attribution: where this fact originated. Default "unknown".

    sensitivity: Sensitivity

    PII/sensitivity classification for governance. Default "none".

    relevanceScore?: number

    Relevance score attached by a search (0-1); absent outside search results.