跳至内容

Exceptions

STTWebsocket连接错误

基类: AgentsException

当STT网络套接字连接失败时引发的异常。

Source code in src/agents/voice/exceptions.py
4
5
6
7
8
class STTWebsocketConnectionError(AgentsException):
    """Exception raised when the STT websocket connection fails."""

    def __init__(self, message: str):
        self.message = message