Arize Phoenix TS
    Preparing search index...
    interface FaithfulnessEvaluatorArgs<
        RecordType extends
            Record<string, unknown> = FaithfulnessEvaluationRecord,
    > {
        choices?: ClassificationChoicesMap;
        inputMapping?: ObjectMapping<RecordType>;
        model: LanguageModel;
        name?: string;
        optimizationDirection?: OptimizationDirection;
        promptTemplate?: PromptTemplate;
        telemetry?: TelemetryConfig;
    }

    Type Parameters

    Hierarchy

    Index

    Properties

    inputMapping?: ObjectMapping<RecordType>

    The mapping of the input to evaluate to the shape that the evaluator expects

    model: LanguageModel
    name?: string
    optimizationDirection?: OptimizationDirection
    promptTemplate?: PromptTemplate
    telemetry?: TelemetryConfig