EU Parliament Monitor - API Documentation - v0.7.19
    Preparing search index...

    Interface ReasoningChain

    A single step in a structured reasoning chain

    interface ReasoningChain {
        premise: string;
        evidence: readonly EvidenceReference[];
        inference: string;
        confidence: ConfidenceLevel;
        counterArguments: readonly string[];
        conclusion: string;
    }
    Index

    Properties

    premise: string

    The starting assertion or observation

    evidence: readonly EvidenceReference[]

    Supporting evidence documents

    inference: string

    The logical step derived from the premise and evidence

    confidence: ConfidenceLevel

    How confident the analyst is in this chain

    counterArguments: readonly string[]

    Plausible objections to the inference

    conclusion: string

    The final deduction drawn from this chain