diff --git a/libs/community/langchain_community/vectorstores/chroma.py b/libs/community/langchain_community/vectorstores/chroma.py index fdd756e14df..248dff00d53 100644 --- a/libs/community/langchain_community/vectorstores/chroma.py +++ b/libs/community/langchain_community/vectorstores/chroma.py @@ -894,7 +894,7 @@ class Chroma(VectorStore): Args: ids: List of ids to delete. """ - self._collection.delete(ids=ids) + self._collection.delete(ids=ids, **kwargs) def __len__(self) -> int: """Count the number of documents in the collection."""