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

    Interface SafetyTestCase

    Example test case for safety evaluation.

    interface SafetyTestCase {
        id: string;
        name: string;
        description: string;
        input: string;
        expectedOutcome: ExpectedOutcomeType;
        riskLevel: RiskLevelType;
        tags: readonly string[];
        context?: string;
    }
    Index

    Properties

    id: string

    Unique test case identifier.

    name: string

    Test case name.

    description: string

    Detailed description of the test scenario.

    input: string

    Input prompt or scenario for the agent.

    expectedOutcome: ExpectedOutcomeType

    Expected safe behavior outcome.

    riskLevel: RiskLevelType

    Risk level of the scenario.

    tags: readonly string[]

    Tags for filtering and grouping.

    context?: string

    Additional context or environment setup.