fix: add 🤔 emoji to "thinking" reply in 灵犀/人参果/人参果1号/甜甜 handlers

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 <noreply@anthropic.com>
This commit is contained in:
renjianbo
2026-05-08 00:28:17 +08:00
parent c5659c4537
commit 355cb66050
4 changed files with 4 additions and 4 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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