Member Junction
    Preparing search index...

    Shape of the JSON report written to disk.

    type RunReport = {
        context: Record<string, unknown>;
        counters: RunCounters;
        entities: EntityEntry[];
        finishedAt: string;
        llmCalls: LLMCallEntry[];
        notes: string[];
        phases: PhaseSpan[];
        runId: string;
        startedAt: string;
        success: boolean;
        totalCostUSD: number;
        totalMs: number;
        totalTokensIn: number;
        totalTokensOut: number;
    }
    Index

    Properties

    context: Record<string, unknown>
    counters: RunCounters
    entities: EntityEntry[]
    finishedAt: string
    llmCalls: LLMCallEntry[]
    notes: string[]
    phases: PhaseSpan[]
    runId: string
    startedAt: string
    success: boolean
    totalCostUSD: number
    totalMs: number
    totalTokensIn: number
    totalTokensOut: number