/** * The options for the evaluation set run. */ export interface EvaluationSetRunOptions { /** The fields that were fuzzy matched. */ fuzzyMatchFields?: string[]; /** The fields that were excluded from the run. */ excludeFields?: string[]; }