@archastro/sdk
    Preparing search index...

    Interface WorkingMemoryEntry

    A key-value memory record stored for an agent, optionally scoped to a user. Memory entries persist across invocations and may carry an expiration time.

    interface WorkingMemoryEntry {
        agent?: string;
        created_at?: string;
        expires_at?: string;
        id: string;
        key?: string;
        updated_at?: string;
        value?: string;
    }
    Index

    Properties

    agent?: string

    ID of the agent that owns this memory entry (agt_...).

    created_at?: string

    When this memory entry was first written (ISO 8601).

    expires_at?: string

    When this entry will be automatically deleted. null if the entry does not expire.

    id: string

    Working memory entry ID (amm_...).

    key?: string

    The string key used to look up this memory entry within the agent's memory namespace.

    updated_at?: string

    When this memory entry was last modified (ISO 8601).

    value?: string

    The string value stored under key. May be any serialized content the agent wrote.