Skip to main content

Documentation Index

Fetch the complete documentation index at: https://ahen.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

This is a destructive operation, and cannot be undone.
1

Delete data from a collection

We can delete data on our collection assuming there is already data in the collection.
Python
# Delete documents by their ids
collection.delete(
    ids=["doc1", "doc2"]
)