Create a new pipeline for the team.
Python
import requests url = "https://www.datalab.to/api/v1/pipelines" payload = { "steps": [ { "settings": {}, "custom_processor_id": "<string>", "eval_rubric_id": 123, "pending_check_url": "<string>", "pending_name": "<string>" } ] } headers = { "X-API-Key": "<api-key>", "Content-Type": "application/json" } response = requests.post(url, json=payload, headers=headers) print(response.text)
{ "id": 123, "pipeline_id": "<string>", "name": "<string>", "steps": [ "<unknown>" ], "is_saved": true, "archived": true, "active_version": 123, "created": "2023-11-07T05:31:56Z", "updated": "2023-11-07T05:31:56Z" }
Documentation IndexFetch the complete documentation index at: https://documentation.datalab.to/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: https://documentation.datalab.to/llms.txt
Use this file to discover all available pages before exploring further.
Ordered list of pipeline steps
1
Show child attributes
Successful Response
Was this page helpful?