Riksdagsmonitor Intelligence Platform โ€” API Documentation - v0.8.35
    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>