diff --git a/libs/vertexai/langchain_google_vertexai/vectorstores/vectorstores.py b/libs/vertexai/langchain_google_vertexai/vectorstores/vectorstores.py index 582010a5..11035bef 100644 --- a/libs/vertexai/langchain_google_vertexai/vectorstores/vectorstores.py +++ b/libs/vertexai/langchain_google_vertexai/vectorstores/vectorstores.py @@ -303,8 +303,10 @@ def from_components( # Implemented in order to keep the current API return cls( document_storage=GCSDocumentStorage(bucket=bucket), searcher=VectorSearchSearcher( - endpoint=endpoint, index=index, staging_bucket=bucket, - stream_update=stream_update + endpoint=endpoint, + index=index, + staging_bucket=bucket, + stream_update=stream_update, ), embbedings=embedding, )