AutoBE
    Preparing search index...

    Interface AnalyzeExtractedDecision

    A single decision extracted from an analyze file's prose by the decision-extraction LLM. Used for cross-file contradiction detection, Requirements IR persistence, and resume-safety checkpointing.

    Juntak

    interface AnalyzeExtractedDecision {
        decision: string;
        evidence: string;
        topic: string;
        value: string;
    }
    Index

    Properties

    decision: string

    The specific decision attribute (e.g., "requires_current_password").

    evidence: string

    Supporting prose extracted with this decision. Empty string if none.

    topic: string

    The topic of the decision (e.g., "password_change").

    value: string

    The value/answer for this decision (e.g., "yes").