@salesforce/agents
    Preparing search index...

    Type Alias TestCaseResult

    type TestCaseResult = {
        endTime?: string;
        generatedData: {
            actionsSequence: string[];
            outcome: string;
            topic: string;
        };
        inputs: { utterance: string };
        startTime: string;
        status: TestStatus;
        testNumber: number;
        testResults: {
            actualValue: string;
            endTime?: string;
            errorCode?: string;
            errorMessage?: string;
            expectedValue: string;
            metricExplainability: string;
            metricLabel: "Accuracy" | "Precision";
            name: string;
            result: null | "PASS" | "FAILURE";
            score: number;
            startTime: string;
            status: TestStatus;
        }[];
    }
    Index

    Properties

    endTime?: string
    generatedData: { actionsSequence: string[]; outcome: string; topic: string }
    inputs: { utterance: string }
    startTime: string
    status: TestStatus
    testNumber: number
    testResults: {
        actualValue: string;
        endTime?: string;
        errorCode?: string;
        errorMessage?: string;
        expectedValue: string;
        metricExplainability: string;
        metricLabel: "Accuracy" | "Precision";
        name: string;
        result: null | "PASS" | "FAILURE";
        score: number;
        startTime: string;
        status: TestStatus;
    }[]