import type * as Extend from "../../../../index"; /** * @example * { * expectedOutput: { * value: { * "vendor_name": "Acme Corp", * "invoice_number": "INV-001", * "total_amount": 1750 * } * } * } */ export interface EvaluationSetItemsUpdateRequest { /** The workspace ID to target. **Required** when using an organization-scoped API key; optional for workspace-scoped keys (the key is already tied to a workspace). See [Authentication](https://docs.extend.ai/2026-02-09/developers/authentication) for details on API key scopes. */ "x-extend-workspace-id"?: string; /** The expected output of the extractor, classifier, or splitter when run against the file. This must conform to the output schema of the entity associated with the evaluation set. */ expectedOutput: Extend.ProvidedProcessorOutput; }