import type * as Extend from "../../../../index"; /** * @example * { * classifier: { * id: "cl_xK9mLPqRtN3vS8wF5hB2cQ" * }, * inputs: [{ * file: { * url: "https://example.com/document1.pdf" * }, * metadata: { * "customerId": "cust_abc123" * } * }, { * file: { * url: "https://example.com/document2.pdf" * }, * metadata: { * "customerId": "cust_def456" * } * }, { * file: { * url: "https://example.com/document3.pdf" * }, * metadata: { * "customerId": "cust_ghi789" * } * }] * } */ export interface ClassifyRunsCreateBatchRequest { /** Reference to the classifier to run against every input in this batch. */ classifier: Extend.ClassifyRunsCreateBatchRequestClassifier; /** An array of inputs to process. Each item produces one classify run. Must contain between 1 and 1,000 items. */ inputs: Extend.ClassifyRunsCreateBatchRequestInputsItem[]; priority?: Extend.RunPriority; }