Riksdagsmonitor Intelligence Platform - v0.7.20
    Preparing search index...

    Interface DeepInspectionResult

    Result produced by a pipeline run. Extends GenerationResult with optional depth and topic metadata.

    interface DeepInspectionResult {
        depth: 1 | 2 | 3 | 4;
        topic?: string;
        success: boolean;
        files?: number;
        slug?: string;
        error?: string;
        articles?: GeneratedArticle[];
        mcpCalls?: MCPCallRecord[];
        crossReferences?: Record<string, unknown>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    depth: 1 | 2 | 3 | 4

    Effective analysis depth used.

    topic?: string

    Focus topic if provided.

    success: boolean
    files?: number
    slug?: string
    error?: string
    articles?: GeneratedArticle[]
    mcpCalls?: MCPCallRecord[]
    crossReferences?: Record<string, unknown>