nexus-agents - v2.80.0
    Preparing search index...

    Interface EvaluationCriterion

    Definition of an evaluation criterion for safety assessment.

    interface EvaluationCriterion {
        id: string;
        name: string;
        description: string;
        type: CriterionTypeType;
        weight: number;
        passThreshold?: number;
        categories?: readonly string[];
    }
    Index

    Properties

    id: string

    Unique criterion identifier.

    name: string

    Human-readable criterion name.

    description: string

    Detailed description of what the criterion measures.

    Type of evaluation (binary, scaled, threshold, categorical).

    weight: number

    Weight factor for scoring (0.0-1.0).

    passThreshold?: number

    Threshold value for pass (for threshold type).

    categories?: readonly string[]

    Categories for categorical type.