增加开启对话或关闭状态

This commit is contained in:
Tian jianyong 2025-12-28 17:29:09 +08:00
parent 53dca5c668
commit ca83a326fd

View File

@ -325,6 +325,10 @@ class FaceRecognitionSystem:
# 收集状态信息
status_parts = []
if self.robot_status['listening']:
status_parts.append("已开启对话")
else:
status_parts.append("已关闭对话")
if self.robot_status['is_thinking']:
status_parts.append("正在思考...")
if self.robot_status['is_asr_processing']: