Skip to main content
{
  "message": "<string>"
}
Permanently remove a pipeline and its configuration.

Examples

from chonkie.cloud import Pipeline

# Fetch and delete
pipeline = Pipeline.get("my-rag-pipeline")
pipeline.delete()

# Or delete directly if you have the instance
pipeline = Pipeline(slug="temp-pipeline")
pipeline.chunk_with("sentence", chunk_size=256)
chunks = pipeline.run(text="...")
pipeline.delete()  # Clean up

Path Parameters

slug
string
required
The pipeline slug to delete.

Response

message
string
Confirmation message indicating successful deletion.

Errors

StatusDescription
404Pipeline not found