Skip to content

Commit

Permalink
Same fixes on langchain/libs/partners/chroma/langchain_chroma/vectors…
Browse files Browse the repository at this point in the history
…tores.py
  • Loading branch information
shjunn committed Nov 1, 2024
1 parent 4d345dc commit 0ad9715
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/partners/chroma/langchain_chroma/vectorstores.py
Original file line number Diff line number Diff line change
Expand Up @@ -997,7 +997,7 @@ def update_documents(self, ids: List[str], documents: List[Document]) -> None:
embeddings = self._embedding_function.embed_documents(text)

if hasattr(
self._collection._client, "max_batch_size"
self._collection._client, "get_max_batch_size"
): # for Chroma 0.4.10 and above
from chromadb.utils.batch_utils import create_batches

Expand Down Expand Up @@ -1070,7 +1070,7 @@ def from_texts(
if ids is None:
ids = [str(uuid.uuid4()) for _ in texts]
if hasattr(
chroma_collection._client, "max_batch_size"
chroma_collection._client, "get_max_batch_size"
): # for Chroma 0.4.10 and above
from chromadb.utils.batch_utils import create_batches

Expand Down

0 comments on commit 0ad9715

Please sign in to comment.