跳转至

Exceptions

STTWebsocketConnectionError

Bases: AgentsException

当 STT websocket 连接失败时引发的异常。

Source code in agents/voice/exceptions.py
4
5
6
7
8
class STTWebsocketConnectionError(AgentsException):
    """当 STT websocket 连接失败时引发的异常。"""

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