import type * as Extend from "../index"; export interface EvaluationSet { /** The type of object. In this case, it will always be `"evaluation_set"`. */ object: "evaluation_set"; /** * The ID of the evaluation set. * * Example: `"ev_2LcgeY_mp2T5yPaEuq5Lw"` */ id: string; /** * The name of the evaluation set. * * Example: `"Invoice Processing Test Set"` */ name: string; /** * A description of the evaluation set. * * Example: `"Q4 2023 vendor invoices for accuracy testing"` */ description: string; /** The extractor, classifier, or splitter associated with this evaluation set. */ entity: Extend.EvaluationSetEntity; createdAt: Extend.CreatedAt; updatedAt: Extend.UpdatedAt; }