Merge pull request #2583 from xinnan-tech/fix-audio-bug

update:未授权设备会话周期管理
This commit is contained in:
欣南科技
2025-11-23 12:31:03 +08:00
committed by GitHub
+69 -24
View File
@@ -68,8 +68,11 @@ class ConnectionHandler:
self.logger = setup_logging() self.logger = setup_logging()
self.server = server # 保存server实例的引用 self.server = server # 保存server实例的引用
self.need_bind = False self.need_bind = False # 是否需要绑定设备
self.bind_code = None self.bind_code = None # 绑定设备的验证码
self.last_bind_prompt_time = 0 # 上次播放绑定提示的时间戳(秒)
self.bind_prompt_interval = 30 # 绑定提示播放间隔(秒)
self.read_config_from_api = self.config.get("read_config_from_api", False) self.read_config_from_api = self.config.get("read_config_from_api", False)
self.websocket = None self.websocket = None
@@ -116,6 +119,7 @@ class ConnectionHandler:
self.client_audio_buffer = bytearray() self.client_audio_buffer = bytearray()
self.client_have_voice = False self.client_have_voice = False
self.client_voice_window = deque(maxlen=5) self.client_voice_window = deque(maxlen=5)
self.first_activity_time = 0.0 # 记录首次活动的时间(毫秒)
self.last_activity_time = 0.0 # 统一的活动时间戳(毫秒) self.last_activity_time = 0.0 # 统一的活动时间戳(毫秒)
self.client_voice_stop = False self.client_voice_stop = False
self.last_is_voice = False self.last_is_voice = False
@@ -187,6 +191,7 @@ class ConnectionHandler:
self.logger.bind(tag=TAG).info("连接来自:MQTT网关") self.logger.bind(tag=TAG).info("连接来自:MQTT网关")
# 初始化活动时间戳 # 初始化活动时间戳
self.first_activity_time = time.time() * 1000
self.last_activity_time = time.time() * 1000 self.last_activity_time = time.time() * 1000
# 启动超时检查任务 # 启动超时检查任务
@@ -268,6 +273,22 @@ class ConnectionHandler:
if self.vad is None or self.asr is None: if self.vad is None or self.asr is None:
return return
# 未绑定设备直接丢弃所有音频,不进行ASR处理
if self.need_bind:
current_time = time.time()
# 检查是否需要播放绑定提示
if (
current_time - self.last_bind_prompt_time
>= self.bind_prompt_interval
):
self.last_bind_prompt_time = current_time
# 复用现有的绑定提示逻辑
from core.handle.receiveAudioHandle import check_bind_device
asyncio.create_task(check_bind_device(self))
# 直接丢弃音频,不进行ASR处理
return
# 处理来自MQTT网关的音频包 # 处理来自MQTT网关的音频包
if self.conn_from_mqtt_gateway and len(message) >= 16: if self.conn_from_mqtt_gateway and len(message) >= 16:
handled = await self._process_mqtt_audio_message(message) handled = await self._process_mqtt_audio_message(message)
@@ -744,18 +765,26 @@ class ConnectionHandler:
force_final_answer = False # 标记是否强制最终回答 force_final_answer = False # 标记是否强制最终回答
if depth >= MAX_DEPTH: if depth >= MAX_DEPTH:
self.logger.bind(tag=TAG).debug(f"已达到最大工具调用深度 {MAX_DEPTH},将强制基于现有信息回答") self.logger.bind(tag=TAG).debug(
f"已达到最大工具调用深度 {MAX_DEPTH},将强制基于现有信息回答"
)
force_final_answer = True force_final_answer = True
# 添加系统指令,要求 LLM 基于现有信息回答 # 添加系统指令,要求 LLM 基于现有信息回答
self.dialogue.put(Message( self.dialogue.put(
role="user", Message(
content="[系统提示] 已达到最大工具调用次数限制,请你基于目前已经获取的所有信息,直接给出最终答案。不要再尝试调用任何工具。" role="user",
)) content="[系统提示] 已达到最大工具调用次数限制,请你基于目前已经获取的所有信息,直接给出最终答案。不要再尝试调用任何工具。",
)
)
# Define intent functions # Define intent functions
functions = None functions = None
# 达到最大深度时,禁用工具调用,强制 LLM 直接回答 # 达到最大深度时,禁用工具调用,强制 LLM 直接回答
if self.intent_type == "function_call" and hasattr(self, "func_handler") and not force_final_answer: if (
self.intent_type == "function_call"
and hasattr(self, "func_handler")
and not force_final_answer
):
functions = self.func_handler.get_functions() functions = self.func_handler.get_functions()
response_message = [] response_message = []
@@ -844,11 +873,16 @@ class ConnectionHandler:
if a is not None: if a is not None:
try: try:
content_arguments_json = json.loads(a) content_arguments_json = json.loads(a)
tool_calls_list.append({ tool_calls_list.append(
"id": str(uuid.uuid4().hex), {
"name": content_arguments_json["name"], "id": str(uuid.uuid4().hex),
"arguments": json.dumps(content_arguments_json["arguments"], ensure_ascii=False) "name": content_arguments_json["name"],
}) "arguments": json.dumps(
content_arguments_json["arguments"],
ensure_ascii=False,
),
}
)
except Exception as e: except Exception as e:
bHasError = True bHasError = True
response_message.append(a) response_message.append(a)
@@ -880,7 +914,9 @@ class ConnectionHandler:
) )
future = asyncio.run_coroutine_threadsafe( future = asyncio.run_coroutine_threadsafe(
self.func_handler.handle_llm_function_call(self, tool_call_data), self.func_handler.handle_llm_function_call(
self, tool_call_data
),
self.loop, self.loop,
) )
futures_with_data.append((future, tool_call_data)) futures_with_data.append((future, tool_call_data))
@@ -888,7 +924,7 @@ class ConnectionHandler:
# 等待协程结束(实际等待时长为最慢的那个) # 等待协程结束(实际等待时长为最慢的那个)
tool_results = [] tool_results = []
for future, tool_call_data in futures_with_data: for future, tool_call_data in futures_with_data:
result = future.result() result = future.result()
tool_results.append((result, tool_call_data)) tool_results.append((result, tool_call_data))
# 统一处理所有工具调用结果 # 统一处理所有工具调用结果
@@ -922,7 +958,11 @@ class ConnectionHandler:
need_llm_tools = [] need_llm_tools = []
for result, tool_call_data in tool_results: for result, tool_call_data in tool_results:
if result.action in [Action.RESPONSE, Action.NOTFOUND, Action.ERROR]: # 直接回复前端 if result.action in [
Action.RESPONSE,
Action.NOTFOUND,
Action.ERROR,
]: # 直接回复前端
text = result.response if result.response else result.result text = result.response if result.response else result.result
self.tts.tts_one_sentence(self, ContentType.TEXT, content_detail=text) self.tts.tts_one_sentence(self, ContentType.TEXT, content_detail=text)
self.dialogue.put(Message(role="assistant", content=text)) self.dialogue.put(Message(role="assistant", content=text))
@@ -957,7 +997,11 @@ class ConnectionHandler:
self.dialogue.put( self.dialogue.put(
Message( Message(
role="tool", role="tool",
tool_call_id=str(uuid.uuid4()) if tool_call_data["id"] is None else tool_call_data["id"], tool_call_id=(
str(uuid.uuid4())
if tool_call_data["id"] is None
else tool_call_data["id"]
),
content=text, content=text,
) )
) )
@@ -1137,13 +1181,14 @@ class ConnectionHandler:
"""检查连接超时""" """检查连接超时"""
try: try:
while not self.stop_event.is_set(): while not self.stop_event.is_set():
last_activity_time = self.last_activity_time
if self.need_bind:
last_activity_time = self.first_activity_time
# 检查是否超时(只有在时间戳已初始化的情况下) # 检查是否超时(只有在时间戳已初始化的情况下)
if self.last_activity_time > 0.0: if last_activity_time > 0.0:
current_time = time.time() * 1000 current_time = time.time() * 1000
if ( if current_time - last_activity_time > self.timeout_seconds * 1000:
current_time - self.last_activity_time
> self.timeout_seconds * 1000
):
if not self.stop_event.is_set(): if not self.stop_event.is_set():
self.logger.bind(tag=TAG).info("连接超时,准备关闭") self.logger.bind(tag=TAG).info("连接超时,准备关闭")
# 设置停止事件,防止重复处理 # 设置停止事件,防止重复处理
@@ -1171,7 +1216,7 @@ class ConnectionHandler:
tools_call: 新的工具调用 tools_call: 新的工具调用
""" """
for tool_call in tools_call: for tool_call in tools_call:
tool_index = getattr(tool_call, 'index', None) tool_index = getattr(tool_call, "index", None)
if tool_index is None: if tool_index is None:
if tool_call.function.name: if tool_call.function.name:
# 有 function_name,说明是新的工具调用 # 有 function_name,说明是新的工具调用
@@ -1189,4 +1234,4 @@ class ConnectionHandler:
if tool_call.function.name: if tool_call.function.name:
tool_calls_list[tool_index]["name"] = tool_call.function.name tool_calls_list[tool_index]["name"] = tool_call.function.name
if tool_call.function.arguments: if tool_call.function.arguments:
tool_calls_list[tool_index]["arguments"] += tool_call.function.arguments tool_calls_list[tool_index]["arguments"] += tool_call.function.arguments