mirror of
https://github.com/xinnan-tech/xiaozhi-esp32-server.git
synced 2026-07-22 23:23:55 +08:00
为 ConnectionHandler 相关的函数参数添加类型注解,使用 TYPE_CHECKING 避免循环导入。主要修改包括: - 在 abortHandle、textHandle 等处理模块中为 conn 参数添加 ConnectionHandler 类型注解 - 在 websocket_server、connection 等核心模块中为方法参数添加类型注解 - 在 plugins_func 下的多个功能模块中为函数参数添加类型注解 - 在 providers 相关模块中为工具执行器和方法添加类型注解 - 统一代码格式,如将单引号字符串改为双引号 Fixes #2034
20 lines
611 B
Python
20 lines
611 B
Python
import json
|
|
from typing import TYPE_CHECKING
|
|
|
|
if TYPE_CHECKING:
|
|
from core.connection import ConnectionHandler
|
|
TAG = __name__
|
|
|
|
|
|
async def handleAbortMessage(conn: "ConnectionHandler"):
|
|
conn.logger.bind(tag=TAG).info("Abort message received")
|
|
# 设置成打断状态,会自动打断llm、tts任务
|
|
conn.client_abort = True
|
|
conn.clear_queues()
|
|
# 打断客户端说话状态
|
|
await conn.websocket.send(
|
|
json.dumps({"type": "tts", "state": "stop", "session_id": conn.session_id})
|
|
)
|
|
conn.clearSpeakStatus()
|
|
conn.logger.bind(tag=TAG).info("Abort message received-end")
|