SongGuess
    Preparing search index...

    Interface AgentMemoryListMemoriesOptions

    Options for the list() method.

    cursor is the opaque continuation token returned by the previous page; pass it back unchanged to fetch the next page. sessionId and type are exact-match filters; combining them is allowed.

    interface AgentMemoryListMemoriesOptions {
        cursor?: string;
        limit?: number;
        sessionId?: string;
        type?: AgentMemoryMemoryType;
    }
    Index

    Properties

    cursor?: string

    Opaque cursor from a previous page.

    limit?: number

    Maximum number of memories to return. Default 20, max 500.

    sessionId?: string

    Exact-match session filter.

    Exact-match memory-type filter.