@salesforce/agents
    Preparing search index...

    Type Alias AiEvaluationDefinition

    type AiEvaluationDefinition = {
        description?: string;
        name: string;
        subjectName: string;
        subjectType: "AGENT";
        subjectVersion?: string;
        testCase: {
            expectation: (
                MetadataMetric
                | MetadataExpectation
                | MetadataCustomEvaluation
            )[];
            inputs: {
                contextVariable?: { variableName: string; variableValue: string }[];
                utterance: string;
            };
        }[];
    }
    Index

    Properties

    description?: string
    name: string
    subjectName: string
    subjectType: "AGENT"
    subjectVersion?: string
    testCase: {
        expectation: (
            MetadataMetric
            | MetadataExpectation
            | MetadataCustomEvaluation
        )[];
        inputs: {
            contextVariable?: { variableName: string; variableValue: string }[];
            utterance: string;
        };
    }[]