Modify the description or steps of an existing pipeline.
Examples
from chonkie.cloud import Pipeline
# Fetch existing pipeline
pipeline = Pipeline.get("my-rag-pipeline")
# Modify steps
pipeline.chunk_with("sentence", chunk_size=256)
# Update in cloud
pipeline.update(description="Updated to use sentence chunker")
Path Parameters
The pipeline slug to update.
Request
New description for the pipeline.
New array of pipeline step configurations. If provided, replaces all existing steps.
Response
Unique identifier for the pipeline.
Updated pipeline description.
Organization that owns the pipeline.
Updated array of pipeline step configurations.
ISO 8601 timestamp of creation.
ISO 8601 timestamp of this update.
Errors
| Status | Description |
|---|
| 400 | Invalid pipeline configuration |
| 404 | Pipeline not found |