Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.trychroma.com/llms.txt

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

Chroma supports deleting items from a collection by id using .delete. The embeddings, documents, and metadata associated with each item will be deleted.
collection.delete(
    ids=["id1", "id2", "id3",...],
)
.delete also supports the where filter. It will delete all items in the collection that match the where filter.
collection.delete(
	where={"chapter": "20"}
)