fix: weaviate batch insert timeout (#108)

This commit is contained in:
John Wang 2023-05-19 21:57:32 +08:00 committed by GitHub
parent 37c3b8979c
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( return weaviate.Client(
url=endpoint, url=endpoint,
auth_client_secret=auth_config, auth_client_secret=auth_config,
timeout_config=(5, 15), timeout_config=(5, 60),
startup_period=None startup_period=None
) )