import type * as Extend from "../../../../index"; /** * @example * { * items: [{ * fileId: "file_xK9mLPqRtN3vS8wF5hB2cQ", * expectedOutput: { * value: { * "vendor_name": "Acme Corp", * "invoice_number": "INV-001", * "total_amount": 1500 * } * } * }] * } */ export interface EvaluationSetItemsCreateRequest { /** 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; /** An array of objects representing the evaluation set items to create. */ items: Extend.EvaluationSetItemsCreateRequestItemsItem[]; }