ISPO SDK
    Preparing search index...

    Interface AssistantMemoryRecallTrace

    Markdown

    What the assistant actually saw for one session: the injected blocks from the recall ledger plus the session's tool calls (memory reads included) from the durable transcript record.

    interface AssistantMemoryRecallTrace {
        recalls: AssistantMemoryRecall[];
        toolCalls: AssistantMemoryTraceToolCall[];
    }
    Index