We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a247b0 commit cb48e21Copy full SHA for cb48e21
sdk/voice/pyproject.toml
@@ -41,7 +41,7 @@ keywords = [
41
[project.optional-dependencies]
42
smart = [
43
"certifi>=2025.10.5",
44
- "onnxruntime>=1.19.0,<2",
+ "onnxruntime>=1.20.1,<2",
45
"transformers>=4.57.0,<5",
46
]
47
dev = [
sdk/voice/speechmatics/voice/_logging.py
@@ -46,6 +46,11 @@ def get_logger(name: str) -> logging.Logger:
# Or for specific components:
logging.getLogger('speechmatics.batch').setLevel(logging.DEBUG)
48
"""
49
+
50
+ # Lower RT logging to INFO to reduce noise
51
+ logging.getLogger("speechmatics.rt").setLevel(logging.INFO)
52
53
+ # Logging for Voice SDK
54
module_logger = logging.getLogger(name)
55
module_logger.addHandler(logging.NullHandler())
56
return module_logger
0 commit comments