基类: AgentsException
当 STT websocket 连接失败时引发的异常。
源代码位于 src/agents/voice/exceptions.py
| class STTWebsocketConnectionError(AgentsException):
"""Exception raised when the STT websocket connection fails."""
def __init__(self, message: str):
self.message = message
|