From 38400a30aaa3a6e3cf3e55d17cb4bd8770af9746 Mon Sep 17 00:00:00 2001 From: Jorge Date: Wed, 13 Mar 2024 12:32:16 +0100 Subject: [PATCH] Fix format --- .../langchain_google_vertexai/vectorstores/vectorstores.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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, )