Spaces:
Running
Running
File size: 233 Bytes
d631808 |
1 2 3 4 5 6 7 8 9 |
from ..exceptions import AgentsException
class STTWebsocketConnectionError(AgentsException):
"""Exception raised when the STT websocket connection fails."""
def __init__(self, message: str):
self.message = message
|