File tree Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,12 @@ class AbstractSyncWebSocketClient(ABC): # pylint: disable=too-many-instance-att
38
38
39
39
This class provides methods to establish a WebSocket connection generically for
40
40
use in all WebSocket clients.
41
+
42
+ Args:
43
+ config (DeepgramClientOptions): all the options for the client
44
+ endpoint (str): the endpoint to connect to
45
+ thread_cls (Type[threading.Thread]): optional thread class to use for creating threads,
46
+ defaults to threading.Thread. Useful for custom thread management like ContextVar support.
41
47
"""
42
48
43
49
_logger : verboselogs .VerboseLogger
Original file line number Diff line number Diff line change @@ -38,10 +38,12 @@ class ListenWebSocketClient(
38
38
"""
39
39
Client for interacting with Deepgram's live transcription services over WebSockets.
40
40
41
- This class provides methods to establish a WebSocket connection for live transcription and handle real-time transcription events.
41
+ This class provides methods to establish a WebSocket connection for live transcription and handle real-time transcription events.
42
42
43
- Args:
44
- config (DeepgramClientOptions): all the options for the client.
43
+ Args:
44
+ config (DeepgramClientOptions): all the options for the client.
45
+ thread_cls (Type[threading.Thread]): optional thread class to use for creating threads,
46
+ defaults to threading.Thread. Useful for custom thread management like ContextVar support.
45
47
"""
46
48
47
49
_logger : verboselogs .VerboseLogger
You can’t perform that action at this time.
0 commit comments