Apply patch [skip ci]

This commit is contained in:
open-swe[bot]
2025-09-10 00:10:42 +00:00
parent 110d364c02
commit ae1fd2378d

View File

@@ -792,7 +792,7 @@ class Chroma(VectorStore):
ids: Optional[list[str]] = None,
**kwargs: Any,
) -> list[str]:
"""Run more texts through the embeddings and add to the vectorstore asynchronously.
"""Async version of add_texts - add texts to the vectorstore.
Args:
texts: Texts to add to the vectorstore.
@@ -1759,3 +1759,4 @@ class Chroma(VectorStore):
return await self.aadd_texts(texts, metadatas=metadatas, **kwargs)