ConradLinus's picture
Upload folder using huggingface_hub
d631808 verified
raw
history blame contribute delete
233 Bytes
from ..exceptions import AgentsException
class STTWebsocketConnectionError(AgentsException):
"""Exception raised when the STT websocket connection fails."""
def __init__(self, message: str):
self.message = message