info位置反了可还行

pull/601/head^2
ChensenCHX 2025-03-27 17:27:06 +08:00
parent 8f4da29899
commit 48d99be497
1 changed files with 1 additions and 1 deletions

View File

@ -229,8 +229,8 @@ class ChatBot:
# 清理掉思考消息后开始做发送前处理 # 清理掉思考消息后开始做发送前处理
if global_config.enable_action_execute and response_actions: if global_config.enable_action_execute and response_actions:
for action in response_actions: for action in response_actions:
response = usable_action[action](response)
logger.info(f"正在处理{action}") logger.info(f"正在处理{action}")
response = usable_action[action](response)
# 记录开始思考的时间,避免从思考到回复的时间太久 # 记录开始思考的时间,避免从思考到回复的时间太久
thinking_start_time = thinking_message.thinking_start_time thinking_start_time = thinking_message.thinking_start_time