/** * @example * { * name: "Invoice Processing Test Set", * description: "Q4 vendor invoices for accuracy testing", * entityId: "ex_1234567890" * } */ export interface EvaluationSetsCreateRequest { /** * The name of the evaluation set. * * Example: `"Invoice Processing Test Set"` */ name: string; /** * A description of what this evaluation set is used for. * * Example: `"Q4 2023 vendor invoices"` */ description?: string; /** * The ID of the extractor, classifier, or splitter to create an evaluation set for. Evaluation sets can in theory be run against any extractor, classifier, or splitter, but it is required to associate the evaluation set with a primary extractor, classifier, or splitter. * * Example: `"ex_Xj8mK2pL9nR4vT7qY5wZ"` */ entityId: string; }