mirror of
https://github.com/langgenius/dify.git
synced 2026-04-11 12:06:50 +08:00
fix(weaviate): skip init checks to prevent PyPI requests on each search (#27624)
Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
parent
b7360140ee
commit
41e549af14
@ -100,6 +100,7 @@ class WeaviateVector(BaseVector):
|
||||
grpc_port=grpc_port,
|
||||
grpc_secure=grpc_secure,
|
||||
auth_credentials=Auth.api_key(config.api_key) if config.api_key else None,
|
||||
skip_init_checks=True, # Skip PyPI version check to avoid unnecessary HTTP requests
|
||||
)
|
||||
|
||||
if not client.is_ready():
|
||||
|
||||
Loading…
Reference in New Issue
Block a user