fix: weaviate batch insert timeout (#108)

This commit is contained in:
John Wang 2023-05-19 21:57:32 +08:00 committed by GitHub
commit 8fc2663693
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -29,7 +29,7 @@ class WeaviateVectorStoreClient(BaseVectorStoreClient):
return weaviate.Client(
url=endpoint,
auth_client_secret=auth_config,
timeout_config=(5, 15),
timeout_config=(5, 60),
startup_period=None
)