import type * as Extend from "../../../../index"; /** * @example * { * classifier: { * id: "cl_1234567890" * }, * file: { * url: "https://example.com/document.pdf" * } * } */ export interface ClassifyRunsCreateRequest { /** Reference to an existing classifier. One of `classifier` or `config` must be provided. */ classifier?: Extend.ClassifyRunsCreateRequestClassifier; /** Inline classify configuration. One of `classifier` or `config` must be provided. */ config?: Extend.ClassifyConfig; /** The file to be classified. Files can be provided as a URL, an Extend file ID, or raw text. */ file: Extend.ClassifyRunsCreateRequestFile; priority?: Extend.RunPriority; metadata?: Extend.RunMetadata; }