ISPO SDK
    Preparing search index...

    Interface AssistantMemoryTraceToolCall

    Markdown

    One tool call replayed from the session's durable transcript record, for the debug trace. Input/output are clamped strings — display-only evidence, never re-parseable authority.

    interface AssistantMemoryTraceToolCall {
        input: string | null;
        name: string;
        output: string | null;
        status: string;
        turnIndex: number;
    }
    Index
    input: string | null
    name: string
    output: string | null
    status: string
    turnIndex: number