import type * as Extend from "../index"; export interface EvaluationSetRun { /** The type of object. In this case, it will always be `"evaluation_set_run"`. */ object: "evaluation_set_run"; /** * The unique identifier for this evaluation set run. * * Example: `"eval_set_run_Xj8mK2pL9nR4vT7qY5wZ"` */ id: string; /** * The ID of the evaluation set that was run. * * Example: `"ev_2LcgeY_mp2T5yPaEuq5Lw"` */ evaluationSetId: string; /** The extractor, classifier, or splitter that was run. */ entity: Extend.EvaluationSetRunEntity; /** The version of the extractor, classifier, or splitter that was run. */ entityVersion: Extend.EvaluationSetRunEntityVersion; metrics: Extend.EvaluationSetRunMetrics; status: Extend.BatchRunStatus; /** The options for the evaluation set run. */ options: Extend.EvaluationSetRunOptions; createdAt: Extend.CreatedAt; updatedAt: Extend.UpdatedAt; }