Agent Maturity Compass API - v1.2.0
    Preparing search index...

    Interface SafetyEvalResult

    interface SafetyEvalResult {
        allowed: boolean;
        decidingConstraint?: ConstraintEvalResult;
        decision: ConstraintAction;
        matchedConstraints: ConstraintEvalResult[];
        timestamp: number;
        totalEvaluated: number;
    }
    Index
    allowed: boolean

    Whether the action is allowed

    decidingConstraint?: ConstraintEvalResult

    The constraint that determined the final decision

    Overall decision (most restrictive matched constraint)

    matchedConstraints: ConstraintEvalResult[]

    All constraints that matched

    timestamp: number

    Evaluation timestamp

    totalEvaluated: number

    Total constraints evaluated