SongGuess
    Preparing search index...

    Interface AgentMemoryRecallOptions

    Options for the recall() method.

    referenceDate accepts a Date object, an ISO-8601 date string (YYYY-MM-DD), or a full ISO-8601 datetime string. When provided, this date is used as "today" for resolving relative time references ("how many days ago", "last week") instead of the server's wall-clock time.

    interface AgentMemoryRecallOptions {
        referenceDate?: string | Date;
        responseLength?: AgentMemoryResponseLength;
        thinkingLevel?: AgentMemoryThinkingLevel;
    }
    Index

    Properties

    referenceDate?: string | Date

    Temporal anchor for date arithmetic.

    responseLength?: AgentMemoryResponseLength

    Response verbosity: "short", "medium" (default), or "long".

    thinkingLevel?: AgentMemoryThinkingLevel

    Recall intensity: "low" (default), "medium", or "high".