We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 35f3765 + 9e71ba1 commit 8d7240fCopy full SHA for 8d7240f
weaviate/__init__.py
@@ -1,7 +1,7 @@
1
"""
2
Weaviate Python Client Library used to interact with a Weaviate instance.
3
4
-
+import os
5
import sys
6
from importlib.metadata import version, PackageNotFoundError
7
from typing import Any
@@ -49,6 +49,8 @@
49
50
from .warnings import _Warnings
51
52
+os.environ["GRPC_VERBOSITY"] = "ERROR" # https://github.com/danielmiessler/fabric/discussions/754
53
+
54
__all__ = [
55
"BatchClient",
56
"ClientBatchingContextManager",
0 commit comments