@archastro/sdk
    Preparing search index...

    Interface WorkingMemoryEntryListResponse

    Paginated list of working memory entries stored for an agent. Includes page metadata to support sequential page traversal.

    interface WorkingMemoryEntryListResponse {
        data: WorkingMemoryEntry[];
        has_next?: boolean;
        has_prev?: boolean;
        page?: number;
        page_size?: number;
        total_entries?: number;
        total_pages?: number;
    }
    Index

    Properties

    Array of working memory entry objects for the current page.

    has_next?: boolean

    true if a subsequent page exists and can be fetched by incrementing the page number.

    has_prev?: boolean

    true if a previous page exists and can be fetched by decrementing the page number.

    page?: number

    The current page number, starting at 1.

    page_size?: number

    Maximum number of entries returned per page.

    total_entries?: number

    Total number of working memory entries matching the query across all pages.

    total_pages?: number

    Total number of pages given the current page_size.