From 355cb66050f07421f4b9df8de76bfc418317d2d4 Mon Sep 17 00:00:00 2001 From: renjianbo <18691577328@163.com> Date: Fri, 8 May 2026 00:28:17 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20add=20=F0=9F=A4=94=20emoji=20to=20"think?= =?UTF-8?q?ing"=20reply=20in=20=E7=81=B5=E7=8A=80/=E4=BA=BA=E5=8F=82?= =?UTF-8?q?=E6=9E=9C/=E4=BA=BA=E5=8F=82=E6=9E=9C1=E5=8F=B7/=E7=94=9C?= =?UTF-8?q?=E7=94=9C=20handlers?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit These four handlers were missing the 🤔 prefix in their "正在思考,请稍候..." reply, while 橙子/苏瑶/主飞书 handlers already had it. Unified for consistency. Co-Authored-By: Claude Opus 4.6 --- backend/app/services/lingxi_ws_handler.py | 2 +- backend/app/services/renshenguo2_ws_handler.py | 2 +- backend/app/services/renshenguo_ws_handler.py | 2 +- backend/app/services/tiantian_ws_handler.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/backend/app/services/lingxi_ws_handler.py b/backend/app/services/lingxi_ws_handler.py index aa286cd..53a3d88 100644 --- a/backend/app/services/lingxi_ws_handler.py +++ b/backend/app/services/lingxi_ws_handler.py @@ -161,7 +161,7 @@ async def _handle_message_async(data): _reply_to_feishu(open_id, "灵犀 Agent 已不存在,请联系管理员。") return - _reply_to_feishu(open_id, "正在思考,请稍候...") + _reply_to_feishu(open_id, "🤔 正在思考,请稍候...") from app.agent_runtime import AgentRuntime, AgentConfig, AgentLLMConfig, AgentToolConfig, AgentMemoryConfig diff --git a/backend/app/services/renshenguo2_ws_handler.py b/backend/app/services/renshenguo2_ws_handler.py index 17cd97c..b26d105 100644 --- a/backend/app/services/renshenguo2_ws_handler.py +++ b/backend/app/services/renshenguo2_ws_handler.py @@ -184,7 +184,7 @@ async def _handle_message_async(data): _reply_to_feishu(open_id, "人参果1号 Agent 已不存在,请联系管理员。") return - _reply_to_feishu(open_id, "正在思考,请稍候...") + _reply_to_feishu(open_id, "🤔 正在思考,请稍候...") # ─── 图片消息:下载飞书图片到工作区 ─────────────────── image_attachment_path = None diff --git a/backend/app/services/renshenguo_ws_handler.py b/backend/app/services/renshenguo_ws_handler.py index 48dc4d3..37ae67d 100644 --- a/backend/app/services/renshenguo_ws_handler.py +++ b/backend/app/services/renshenguo_ws_handler.py @@ -193,7 +193,7 @@ async def _handle_message_async(data): _reply_to_feishu(open_id, "人参果 Agent 已不存在,请联系管理员。") return - _reply_to_feishu(open_id, "正在思考,请稍候...") + _reply_to_feishu(open_id, "🤔 正在思考,请稍候...") # ─── 图片消息:下载飞书图片到工作区 ─────────────────── image_attachment_path: Optional[str] = None diff --git a/backend/app/services/tiantian_ws_handler.py b/backend/app/services/tiantian_ws_handler.py index e3211db..e562bd1 100644 --- a/backend/app/services/tiantian_ws_handler.py +++ b/backend/app/services/tiantian_ws_handler.py @@ -161,7 +161,7 @@ async def _handle_message_async(data): _reply_to_feishu(open_id, "甜甜 Agent 已不存在,请联系管理员。") return - _reply_to_feishu(open_id, "正在思考,请稍候...") + _reply_to_feishu(open_id, "🤔 正在思考,请稍候...") from app.agent_runtime import AgentRuntime, AgentConfig, AgentLLMConfig, AgentToolConfig, AgentMemoryConfig