The /pipeline endpoint and pipeline SDK methods are deprecated. Call /parse, /extract, /split, or /edit directly instead.
The pipeline.run() method combines parse and extract operations in a single request.
Basic Usage
The pipeline endpoint runs a pre-configured pipeline (created in Studio) that combines parse and extract operations:
Method Signatures
Synchronous Pipeline
Asynchronous Pipeline
Creating Pipelines
Pipelines are created in Reducto Studio. A pipeline combines:
- Parse configuration (chunking, formatting, etc.)
- Extract configuration (schema, citations, etc.)
Once created, you get a pipeline_id that you can use in your code.
Next Steps