🤖 自动格式化代码 [skip ci]
This commit is contained in:
@@ -184,9 +184,7 @@ class ChattingObservation(Observation):
|
|||||||
try:
|
try:
|
||||||
# 只需检查是否存在,不需要获取内容,使用 {"_id": 1} 提高效率
|
# 只需检查是否存在,不需要获取内容,使用 {"_id": 1} 提高效率
|
||||||
new_message = await asyncio.to_thread(
|
new_message = await asyncio.to_thread(
|
||||||
db.messages.find_one,
|
db.messages.find_one, {"chat_id": self.chat_id, "time": {"$gt": timestamp}}, {"_id": 1}
|
||||||
{"chat_id": self.chat_id, "time": {"$gt": timestamp}},
|
|
||||||
{"_id": 1}
|
|
||||||
)
|
)
|
||||||
# new_message = db.messages.find_one({"chat_id": self.chat_id, "time": {"$gt": timestamp}}, {"_id": 1}) # find_one 不是异步的
|
# new_message = db.messages.find_one({"chat_id": self.chat_id, "time": {"$gt": timestamp}}, {"_id": 1}) # find_one 不是异步的
|
||||||
return new_message is not None
|
return new_message is not None
|
||||||
|
|||||||
@@ -43,13 +43,9 @@ def init_prompt():
|
|||||||
prompt += "你现在{mood_info}\n"
|
prompt += "你现在{mood_info}\n"
|
||||||
# prompt += "你注意到{sender_name}刚刚说:{message_txt}\n"
|
# prompt += "你注意到{sender_name}刚刚说:{message_txt}\n"
|
||||||
prompt += "现在请你根据刚刚的想法继续思考,思考时可以想想如何对群聊内容进行回复,要不要对群里的话题进行回复,关注新话题,可以适当转换话题,大家正在说的话才是聊天的主题。\n"
|
prompt += "现在请你根据刚刚的想法继续思考,思考时可以想想如何对群聊内容进行回复,要不要对群里的话题进行回复,关注新话题,可以适当转换话题,大家正在说的话才是聊天的主题。\n"
|
||||||
prompt += (
|
prompt += "回复的要求是:平淡一些,简短一些,说中文,如果你要回复,最好只回复一个人的一个话题\n"
|
||||||
"回复的要求是:平淡一些,简短一些,说中文,如果你要回复,最好只回复一个人的一个话题\n"
|
|
||||||
)
|
|
||||||
prompt += "请注意不要输出多余内容(包括前后缀,冒号和引号,括号, 表情,等),不要带有括号和动作描写。不要回复自己的发言,尽量不要说你说过的话。"
|
prompt += "请注意不要输出多余内容(包括前后缀,冒号和引号,括号, 表情,等),不要带有括号和动作描写。不要回复自己的发言,尽量不要说你说过的话。"
|
||||||
prompt += (
|
prompt += "现在请你继续生成你在这个聊天中的想法,不要分点输出,生成内心想法,文字不要浮夸"
|
||||||
"现在请你继续生成你在这个聊天中的想法,不要分点输出,生成内心想法,文字不要浮夸"
|
|
||||||
)
|
|
||||||
|
|
||||||
Prompt(prompt, "sub_heartflow_prompt_before")
|
Prompt(prompt, "sub_heartflow_prompt_before")
|
||||||
|
|
||||||
|
|||||||
@@ -52,18 +52,19 @@ class HeartFC_Controller:
|
|||||||
self.emoji_manager = emoji_manager
|
self.emoji_manager = emoji_manager
|
||||||
self.relationship_manager = relationship_manager
|
self.relationship_manager = relationship_manager
|
||||||
self.global_config = global_config
|
self.global_config = global_config
|
||||||
self.MessageManager = MessageManager # Pass the class/singleton access
|
self.MessageManager = MessageManager # Pass the class/singleton access
|
||||||
# --- End dependencies ---
|
# --- End dependencies ---
|
||||||
|
|
||||||
# --- Added Class Method for Singleton Access ---
|
# --- Added Class Method for Singleton Access ---
|
||||||
@classmethod
|
@classmethod
|
||||||
def get_instance(cls):
|
def get_instance(cls):
|
||||||
if cls._instance is None:
|
if cls._instance is None:
|
||||||
# This might indicate an issue if called before initialization
|
# This might indicate an issue if called before initialization
|
||||||
logger.warning("HeartFC_Controller get_instance called before initialization.")
|
logger.warning("HeartFC_Controller get_instance called before initialization.")
|
||||||
# Optionally, initialize here if a strict singleton pattern is desired
|
# Optionally, initialize here if a strict singleton pattern is desired
|
||||||
# cls._instance = cls()
|
# cls._instance = cls()
|
||||||
return cls._instance
|
return cls._instance
|
||||||
|
|
||||||
# --- End Added Class Method ---
|
# --- End Added Class Method ---
|
||||||
|
|
||||||
async def start(self):
|
async def start(self):
|
||||||
|
|||||||
@@ -74,7 +74,6 @@ class MessageSender:
|
|||||||
logger.error(f"发送消息 {message_preview} 失败: {str(e)}")
|
logger.error(f"发送消息 {message_preview} 失败: {str(e)}")
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class MessageContainer:
|
class MessageContainer:
|
||||||
"""单个聊天流的发送/思考消息容器"""
|
"""单个聊天流的发送/思考消息容器"""
|
||||||
|
|
||||||
@@ -173,7 +172,7 @@ class MessageManager:
|
|||||||
# 检查 message_id 是否匹配 thinking_id 或以 "me" 开头
|
# 检查 message_id 是否匹配 thinking_id 或以 "me" 开头
|
||||||
if message.message_info.message_id == thinking_id or message.message_info.message_id[:2] == "me":
|
if message.message_info.message_id == thinking_id or message.message_info.message_id[:2] == "me":
|
||||||
print(f"检查到存在相同thinking_id的消息: {message.message_info.message_id}???{thinking_id}")
|
print(f"检查到存在相同thinking_id的消息: {message.message_info.message_id}???{thinking_id}")
|
||||||
|
|
||||||
return True
|
return True
|
||||||
return False
|
return False
|
||||||
|
|
||||||
@@ -220,10 +219,9 @@ class MessageManager:
|
|||||||
logger.trace(f"\n{message_earliest.processed_plain_text},{typing_time},计算输入时间结束\n")
|
logger.trace(f"\n{message_earliest.processed_plain_text},{typing_time},计算输入时间结束\n")
|
||||||
await asyncio.sleep(typing_time)
|
await asyncio.sleep(typing_time)
|
||||||
logger.debug(f"\n{message_earliest.processed_plain_text},{typing_time},等待输入时间结束\n")
|
logger.debug(f"\n{message_earliest.processed_plain_text},{typing_time},等待输入时间结束\n")
|
||||||
|
|
||||||
|
|
||||||
await self.storage.store_message(message_earliest, message_earliest.chat_stream)
|
await self.storage.store_message(message_earliest, message_earliest.chat_stream)
|
||||||
|
|
||||||
await MessageSender().send_message(message_earliest)
|
await MessageSender().send_message(message_earliest)
|
||||||
|
|
||||||
container.remove_message(message_earliest)
|
container.remove_message(message_earliest)
|
||||||
|
|||||||
@@ -3,9 +3,8 @@ import time
|
|||||||
import traceback
|
import traceback
|
||||||
from typing import List, Optional, Dict, Any, TYPE_CHECKING
|
from typing import List, Optional, Dict, Any, TYPE_CHECKING
|
||||||
import json
|
import json
|
||||||
from src.plugins.chat.message import (MessageRecv, BaseMessageInfo, MessageThinking,
|
from src.plugins.chat.message import MessageRecv, BaseMessageInfo, MessageThinking, MessageSending
|
||||||
MessageSending)
|
from src.plugins.chat.message import MessageSet, Seg # Local import needed after move
|
||||||
from src.plugins.chat.message import MessageSet, Seg # Local import needed after move
|
|
||||||
from src.plugins.chat.chat_stream import ChatStream
|
from src.plugins.chat.chat_stream import ChatStream
|
||||||
from src.plugins.chat.message import UserInfo
|
from src.plugins.chat.message import UserInfo
|
||||||
from src.heart_flow.heartflow import heartflow, SubHeartflow
|
from src.heart_flow.heartflow import heartflow, SubHeartflow
|
||||||
@@ -13,7 +12,7 @@ from src.plugins.chat.chat_stream import chat_manager
|
|||||||
from src.common.logger import get_module_logger, LogConfig, DEFAULT_CONFIG # 引入 DEFAULT_CONFIG
|
from src.common.logger import get_module_logger, LogConfig, DEFAULT_CONFIG # 引入 DEFAULT_CONFIG
|
||||||
from src.plugins.models.utils_model import LLMRequest
|
from src.plugins.models.utils_model import LLMRequest
|
||||||
from src.plugins.chat.utils import parse_text_timestamps
|
from src.plugins.chat.utils import parse_text_timestamps
|
||||||
from src.plugins.chat.utils_image import image_path_to_base64 # Local import needed after move
|
from src.plugins.chat.utils_image import image_path_to_base64 # Local import needed after move
|
||||||
|
|
||||||
# 定义日志配置 (使用 loguru 格式)
|
# 定义日志配置 (使用 loguru 格式)
|
||||||
interest_log_config = LogConfig(
|
interest_log_config = LogConfig(
|
||||||
@@ -155,7 +154,7 @@ class PFChatting:
|
|||||||
# Update _last_added_duration only if it's >= 0.5 to prevent it from becoming too small
|
# Update _last_added_duration only if it's >= 0.5 to prevent it from becoming too small
|
||||||
self._last_added_duration = duration_to_add
|
self._last_added_duration = duration_to_add
|
||||||
logger.info(
|
logger.info(
|
||||||
f"{log_prefix} 麦麦兴趣增加! #{self._trigger_count_this_activation}. 想继续聊: {duration_to_add:.2f}s, 麦麦还能聊: {self._loop_timer:.1f}s."
|
f"{log_prefix} 麦麦兴趣增加! #{self._trigger_count_this_activation}. 想继续聊: {duration_to_add:.2f}s, 麦麦还能聊: {self._loop_timer:.1f}s."
|
||||||
)
|
)
|
||||||
|
|
||||||
# 添加计算出的时间
|
# 添加计算出的时间
|
||||||
@@ -185,7 +184,7 @@ class PFChatting:
|
|||||||
exception = task.exception()
|
exception = task.exception()
|
||||||
if exception:
|
if exception:
|
||||||
logger.error(f"{log_prefix} PFChatting: 麦麦脱离了聊天(异常): {exception}")
|
logger.error(f"{log_prefix} PFChatting: 麦麦脱离了聊天(异常): {exception}")
|
||||||
logger.error(traceback.format_exc()) # Log full traceback for exceptions
|
logger.error(traceback.format_exc()) # Log full traceback for exceptions
|
||||||
else:
|
else:
|
||||||
logger.debug(f"{log_prefix} PFChatting: 麦麦脱离了聊天 (正常完成)")
|
logger.debug(f"{log_prefix} PFChatting: 麦麦脱离了聊天 (正常完成)")
|
||||||
except asyncio.CancelledError:
|
except asyncio.CancelledError:
|
||||||
@@ -218,19 +217,20 @@ class PFChatting:
|
|||||||
continue
|
continue
|
||||||
else:
|
else:
|
||||||
logger.info(f"{log_prefix} PFChatting: 11111111111111111111111111111111麦麦不发消息了,开始规划")
|
logger.info(f"{log_prefix} PFChatting: 11111111111111111111111111111111麦麦不发消息了,开始规划")
|
||||||
|
|
||||||
|
|
||||||
async with self._timer_lock:
|
async with self._timer_lock:
|
||||||
current_timer = self._loop_timer
|
current_timer = self._loop_timer
|
||||||
if current_timer <= 0:
|
if current_timer <= 0:
|
||||||
logger.info(f"{log_prefix} PFChatting: 聊太久了,麦麦打算休息一下 (计时器为 {current_timer:.1f}s)。退出PFChatting。")
|
logger.info(
|
||||||
|
f"{log_prefix} PFChatting: 聊太久了,麦麦打算休息一下 (计时器为 {current_timer:.1f}s)。退出PFChatting。"
|
||||||
|
)
|
||||||
break
|
break
|
||||||
|
|
||||||
# 记录循环周期开始时间,用于计时和休眠计算
|
# 记录循环周期开始时间,用于计时和休眠计算
|
||||||
loop_cycle_start_time = time.monotonic()
|
loop_cycle_start_time = time.monotonic()
|
||||||
action_taken_this_cycle = False
|
action_taken_this_cycle = False
|
||||||
acquired_lock = False
|
acquired_lock = False
|
||||||
planner_start_db_time = 0.0 # 初始化
|
planner_start_db_time = 0.0 # 初始化
|
||||||
|
|
||||||
try:
|
try:
|
||||||
# Use try_acquire pattern or timeout?
|
# Use try_acquire pattern or timeout?
|
||||||
@@ -252,10 +252,10 @@ class PFChatting:
|
|||||||
llm_error = planner_result.get("llm_error", False)
|
llm_error = planner_result.get("llm_error", False)
|
||||||
|
|
||||||
if llm_error:
|
if llm_error:
|
||||||
logger.error(f"{log_prefix} Planner LLM 失败,跳过本周期回复尝试。理由: {reasoning}")
|
logger.error(f"{log_prefix} Planner LLM 失败,跳过本周期回复尝试。理由: {reasoning}")
|
||||||
# Optionally add a longer sleep?
|
# Optionally add a longer sleep?
|
||||||
action_taken_this_cycle = False # Ensure no action is counted
|
action_taken_this_cycle = False # Ensure no action is counted
|
||||||
# Continue to timer decrement and sleep
|
# Continue to timer decrement and sleep
|
||||||
|
|
||||||
elif action == "text_reply":
|
elif action == "text_reply":
|
||||||
logger.info(f"{log_prefix} PFChatting: 麦麦决定回复文本. 理由: {reasoning}")
|
logger.info(f"{log_prefix} PFChatting: 麦麦决定回复文本. 理由: {reasoning}")
|
||||||
@@ -287,7 +287,7 @@ class PFChatting:
|
|||||||
thinking_id=thinking_id,
|
thinking_id=thinking_id,
|
||||||
anchor_message=anchor_message,
|
anchor_message=anchor_message,
|
||||||
response_set=replier_result,
|
response_set=replier_result,
|
||||||
send_emoji=emoji_query
|
send_emoji=emoji_query,
|
||||||
)
|
)
|
||||||
# logger.info(f"{log_prefix} 循环: 发送器完成成功.")
|
# logger.info(f"{log_prefix} 循环: 发送器完成成功.")
|
||||||
except Exception as e_sender:
|
except Exception as e_sender:
|
||||||
@@ -309,11 +309,11 @@ class PFChatting:
|
|||||||
logger.error(f"{log_prefix} 循环: 发送表情失败: {e_emoji}")
|
logger.error(f"{log_prefix} 循环: 发送表情失败: {e_emoji}")
|
||||||
else:
|
else:
|
||||||
logger.warning(f"{log_prefix} 循环: 无法发送表情, 无法获取锚点.")
|
logger.warning(f"{log_prefix} 循环: 无法发送表情, 无法获取锚点.")
|
||||||
action_taken_this_cycle = True # 即使发送失败,Planner 也决策了动作
|
action_taken_this_cycle = True # 即使发送失败,Planner 也决策了动作
|
||||||
|
|
||||||
elif action == "no_reply":
|
elif action == "no_reply":
|
||||||
logger.info(f"{log_prefix} PFChatting: 麦麦决定不回复. 原因: {reasoning}")
|
logger.info(f"{log_prefix} PFChatting: 麦麦决定不回复. 原因: {reasoning}")
|
||||||
action_taken_this_cycle = False # 标记为未执行动作
|
action_taken_this_cycle = False # 标记为未执行动作
|
||||||
# --- 新增:等待新消息 ---
|
# --- 新增:等待新消息 ---
|
||||||
logger.debug(f"{log_prefix} PFChatting: 开始等待新消息 (自 {planner_start_db_time})...")
|
logger.debug(f"{log_prefix} PFChatting: 开始等待新消息 (自 {planner_start_db_time})...")
|
||||||
observation = None
|
observation = None
|
||||||
@@ -327,35 +327,35 @@ class PFChatting:
|
|||||||
async with self._timer_lock:
|
async with self._timer_lock:
|
||||||
if self._loop_timer <= 0:
|
if self._loop_timer <= 0:
|
||||||
logger.info(f"{log_prefix} PFChatting: 等待新消息时计时器耗尽。")
|
logger.info(f"{log_prefix} PFChatting: 等待新消息时计时器耗尽。")
|
||||||
break # 计时器耗尽,退出等待
|
break # 计时器耗尽,退出等待
|
||||||
|
|
||||||
# 检查是否有新消息
|
# 检查是否有新消息
|
||||||
has_new = await observation.has_new_messages_since(planner_start_db_time)
|
has_new = await observation.has_new_messages_since(planner_start_db_time)
|
||||||
if has_new:
|
if has_new:
|
||||||
logger.info(f"{log_prefix} PFChatting: 检测到新消息,结束等待。")
|
logger.info(f"{log_prefix} PFChatting: 检测到新消息,结束等待。")
|
||||||
break # 收到新消息,退出等待
|
break # 收到新消息,退出等待
|
||||||
|
|
||||||
# 检查等待是否超时(例如,防止无限等待)
|
# 检查等待是否超时(例如,防止无限等待)
|
||||||
if time.monotonic() - wait_start_time > 60: # 等待60秒示例
|
if time.monotonic() - wait_start_time > 60: # 等待60秒示例
|
||||||
logger.warning(f"{log_prefix} PFChatting: 等待新消息超时(60秒)。")
|
logger.warning(f"{log_prefix} PFChatting: 等待新消息超时(60秒)。")
|
||||||
break # 超时退出
|
break # 超时退出
|
||||||
|
|
||||||
# 等待一段时间再检查
|
# 等待一段时间再检查
|
||||||
try:
|
try:
|
||||||
await asyncio.sleep(1.5) # 检查间隔
|
await asyncio.sleep(1.5) # 检查间隔
|
||||||
except asyncio.CancelledError:
|
except asyncio.CancelledError:
|
||||||
logger.info(f"{log_prefix} 等待新消息的 sleep 被中断。")
|
logger.info(f"{log_prefix} 等待新消息的 sleep 被中断。")
|
||||||
raise # 重新抛出取消错误,以便外层循环处理
|
raise # 重新抛出取消错误,以便外层循环处理
|
||||||
|
|
||||||
else:
|
else:
|
||||||
logger.warning(f"{log_prefix} PFChatting: 无法获取 Observation 实例,无法等待新消息。")
|
logger.warning(f"{log_prefix} PFChatting: 无法获取 Observation 实例,无法等待新消息。")
|
||||||
# --- 等待结束 ---
|
# --- 等待结束 ---
|
||||||
|
|
||||||
elif action == "error": # Action specifically set to error by planner
|
elif action == "error": # Action specifically set to error by planner
|
||||||
logger.error(f"{log_prefix} PFChatting: Planner返回错误状态. 原因: {reasoning}")
|
logger.error(f"{log_prefix} PFChatting: Planner返回错误状态. 原因: {reasoning}")
|
||||||
action_taken_this_cycle = False
|
action_taken_this_cycle = False
|
||||||
|
|
||||||
else: # Unknown action from planner
|
else: # Unknown action from planner
|
||||||
logger.warning(f"{log_prefix} PFChatting: Planner返回未知动作 '{action}'. 原因: {reasoning}")
|
logger.warning(f"{log_prefix} PFChatting: Planner返回未知动作 '{action}'. 原因: {reasoning}")
|
||||||
action_taken_this_cycle = False
|
action_taken_this_cycle = False
|
||||||
|
|
||||||
@@ -378,9 +378,9 @@ class PFChatting:
|
|||||||
self._loop_timer -= cycle_duration
|
self._loop_timer -= cycle_duration
|
||||||
# Log timer decrement less aggressively
|
# Log timer decrement less aggressively
|
||||||
if cycle_duration > 0.1 or not action_taken_this_cycle:
|
if cycle_duration > 0.1 or not action_taken_this_cycle:
|
||||||
logger.debug(
|
logger.debug(
|
||||||
f"{log_prefix} PFChatting: 周期耗时 {cycle_duration:.2f}s. 剩余时间: {self._loop_timer:.1f}s."
|
f"{log_prefix} PFChatting: 周期耗时 {cycle_duration:.2f}s. 剩余时间: {self._loop_timer:.1f}s."
|
||||||
)
|
)
|
||||||
|
|
||||||
# --- Delay --- #
|
# --- Delay --- #
|
||||||
try:
|
try:
|
||||||
@@ -391,8 +391,8 @@ class PFChatting:
|
|||||||
sleep_duration = 0.2
|
sleep_duration = 0.2
|
||||||
|
|
||||||
if sleep_duration > 0:
|
if sleep_duration > 0:
|
||||||
# logger.debug(f"{log_prefix} Sleeping for {sleep_duration:.2f}s")
|
# logger.debug(f"{log_prefix} Sleeping for {sleep_duration:.2f}s")
|
||||||
await asyncio.sleep(sleep_duration)
|
await asyncio.sleep(sleep_duration)
|
||||||
|
|
||||||
except asyncio.CancelledError:
|
except asyncio.CancelledError:
|
||||||
logger.info(f"{log_prefix} Sleep interrupted, loop likely cancelling.")
|
logger.info(f"{log_prefix} Sleep interrupted, loop likely cancelling.")
|
||||||
@@ -417,7 +417,7 @@ class PFChatting:
|
|||||||
get_mid_memory_id = []
|
get_mid_memory_id = []
|
||||||
# send_emoji_from_tools = "" # Emoji suggested by tools
|
# send_emoji_from_tools = "" # Emoji suggested by tools
|
||||||
current_mind: Optional[str] = None
|
current_mind: Optional[str] = None
|
||||||
llm_error = False # Flag for LLM failure
|
llm_error = False # Flag for LLM failure
|
||||||
|
|
||||||
# --- 获取最新的观察信息 --- #
|
# --- 获取最新的观察信息 --- #
|
||||||
if not self.sub_hf:
|
if not self.sub_hf:
|
||||||
@@ -460,10 +460,12 @@ class PFChatting:
|
|||||||
tool_result_info = tool_result.get("structured_info", {})
|
tool_result_info = tool_result.get("structured_info", {})
|
||||||
logger.debug(f"{log_prefix}[Planner] 规划前工具结果: {tool_result_info}")
|
logger.debug(f"{log_prefix}[Planner] 规划前工具结果: {tool_result_info}")
|
||||||
# Extract memory IDs and potential emoji query from tools
|
# Extract memory IDs and potential emoji query from tools
|
||||||
get_mid_memory_id = [mem["content"] for mem in tool_result_info.get("mid_chat_mem", []) if "content" in mem]
|
get_mid_memory_id = [
|
||||||
|
mem["content"] for mem in tool_result_info.get("mid_chat_mem", []) if "content" in mem
|
||||||
|
]
|
||||||
# send_emoji_from_tools = next((item["content"] for item in tool_result_info.get("send_emoji", []) if "content" in item), "")
|
# send_emoji_from_tools = next((item["content"] for item in tool_result_info.get("send_emoji", []) if "content" in item), "")
|
||||||
# if send_emoji_from_tools:
|
# if send_emoji_from_tools:
|
||||||
# logger.info(f"{log_prefix}[Planner] 工具建议表情: '{send_emoji_from_tools}'")
|
# logger.info(f"{log_prefix}[Planner] 工具建议表情: '{send_emoji_from_tools}'")
|
||||||
|
|
||||||
except Exception as e_tool:
|
except Exception as e_tool:
|
||||||
logger.error(f"{log_prefix}[Planner] 规划前工具使用失败: {e_tool}")
|
logger.error(f"{log_prefix}[Planner] 规划前工具使用失败: {e_tool}")
|
||||||
@@ -484,7 +486,7 @@ class PFChatting:
|
|||||||
|
|
||||||
# --- 使用 LLM 进行决策 --- #
|
# --- 使用 LLM 进行决策 --- #
|
||||||
action = "no_reply" # Default action
|
action = "no_reply" # Default action
|
||||||
emoji_query = "" # Default emoji query (used if action is emoji_reply or text_reply with emoji)
|
emoji_query = "" # Default emoji query (used if action is emoji_reply or text_reply with emoji)
|
||||||
reasoning = "默认决策或获取决策失败"
|
reasoning = "默认决策或获取决策失败"
|
||||||
|
|
||||||
try:
|
try:
|
||||||
@@ -520,7 +522,9 @@ class PFChatting:
|
|||||||
f"{log_prefix}[Planner] LLM 决策: {action}, 理由: {reasoning}, EmojiQuery: '{emoji_query}'"
|
f"{log_prefix}[Planner] LLM 决策: {action}, 理由: {reasoning}, EmojiQuery: '{emoji_query}'"
|
||||||
)
|
)
|
||||||
except json.JSONDecodeError as json_e:
|
except json.JSONDecodeError as json_e:
|
||||||
logger.error(f"{log_prefix}[Planner] 解析工具参数失败: {json_e}. Args: {tool_call['function'].get('arguments')}")
|
logger.error(
|
||||||
|
f"{log_prefix}[Planner] 解析工具参数失败: {json_e}. Args: {tool_call['function'].get('arguments')}"
|
||||||
|
)
|
||||||
action = "error"
|
action = "error"
|
||||||
reasoning = "工具参数解析失败"
|
reasoning = "工具参数解析失败"
|
||||||
llm_error = True
|
llm_error = True
|
||||||
@@ -530,7 +534,9 @@ class PFChatting:
|
|||||||
reasoning = "处理工具参数时出错"
|
reasoning = "处理工具参数时出错"
|
||||||
llm_error = True
|
llm_error = True
|
||||||
else:
|
else:
|
||||||
logger.warning(f"{log_prefix}[Planner] LLM 未按预期调用 'decide_reply_action' 工具。Tool calls: {tool_calls}")
|
logger.warning(
|
||||||
|
f"{log_prefix}[Planner] LLM 未按预期调用 'decide_reply_action' 工具。Tool calls: {tool_calls}"
|
||||||
|
)
|
||||||
action = "error"
|
action = "error"
|
||||||
reasoning = "LLM未调用预期工具"
|
reasoning = "LLM未调用预期工具"
|
||||||
llm_error = True
|
llm_error = True
|
||||||
@@ -556,7 +562,7 @@ class PFChatting:
|
|||||||
return {
|
return {
|
||||||
"action": action,
|
"action": action,
|
||||||
"reasoning": reasoning,
|
"reasoning": reasoning,
|
||||||
"emoji_query": emoji_query, # Explicit query from Planner/LLM
|
"emoji_query": emoji_query, # Explicit query from Planner/LLM
|
||||||
"current_mind": current_mind,
|
"current_mind": current_mind,
|
||||||
# "send_emoji_from_tools": send_emoji_from_tools, # Emoji suggested by tools (used as fallback)
|
# "send_emoji_from_tools": send_emoji_from_tools, # Emoji suggested by tools (used as fallback)
|
||||||
"observed_messages": observed_messages,
|
"observed_messages": observed_messages,
|
||||||
@@ -577,8 +583,8 @@ class PFChatting:
|
|||||||
if last_msg_dict:
|
if last_msg_dict:
|
||||||
try:
|
try:
|
||||||
# anchor_message = MessageRecv(last_msg_dict, chat_stream=self.chat_stream)
|
# anchor_message = MessageRecv(last_msg_dict, chat_stream=self.chat_stream)
|
||||||
anchor_message = MessageRecv(last_msg_dict) # 移除 chat_stream 参数
|
anchor_message = MessageRecv(last_msg_dict) # 移除 chat_stream 参数
|
||||||
anchor_message.update_chat_stream(self.chat_stream) # 添加 update_chat_stream 调用
|
anchor_message.update_chat_stream(self.chat_stream) # 添加 update_chat_stream 调用
|
||||||
if not (
|
if not (
|
||||||
anchor_message
|
anchor_message
|
||||||
and anchor_message.message_info
|
and anchor_message.message_info
|
||||||
@@ -589,9 +595,11 @@ class PFChatting:
|
|||||||
# logger.debug(f"{self._get_log_prefix()} 重构的锚点消息: ID={anchor_message.message_info.message_id}")
|
# logger.debug(f"{self._get_log_prefix()} 重构的锚点消息: ID={anchor_message.message_info.message_id}")
|
||||||
return anchor_message
|
return anchor_message
|
||||||
except Exception as e_reconstruct:
|
except Exception as e_reconstruct:
|
||||||
logger.warning(f"{self._get_log_prefix()} 从观察到的消息重构 MessageRecv 失败: {e_reconstruct}. 创建占位符.")
|
logger.warning(
|
||||||
|
f"{self._get_log_prefix()} 从观察到的消息重构 MessageRecv 失败: {e_reconstruct}. 创建占位符."
|
||||||
|
)
|
||||||
# else:
|
# else:
|
||||||
# logger.warning(f"{self._get_log_prefix()} observed_messages 为空. 创建占位符锚点消息.")
|
# logger.warning(f"{self._get_log_prefix()} observed_messages 为空. 创建占位符锚点消息.")
|
||||||
|
|
||||||
# --- Create Placeholder --- #
|
# --- Create Placeholder --- #
|
||||||
placeholder_id = f"mid_pf_{int(time.time() * 1000)}"
|
placeholder_id = f"mid_pf_{int(time.time() * 1000)}"
|
||||||
@@ -613,7 +621,9 @@ class PFChatting:
|
|||||||
}
|
}
|
||||||
anchor_message = MessageRecv(placeholder_msg_dict)
|
anchor_message = MessageRecv(placeholder_msg_dict)
|
||||||
anchor_message.update_chat_stream(self.chat_stream)
|
anchor_message.update_chat_stream(self.chat_stream)
|
||||||
logger.info(f"{self._get_log_prefix()} Created placeholder anchor message: ID={anchor_message.message_info.message_id}")
|
logger.info(
|
||||||
|
f"{self._get_log_prefix()} Created placeholder anchor message: ID={anchor_message.message_info.message_id}"
|
||||||
|
)
|
||||||
return anchor_message
|
return anchor_message
|
||||||
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
@@ -638,7 +648,7 @@ class PFChatting:
|
|||||||
thinking_id: str,
|
thinking_id: str,
|
||||||
anchor_message: MessageRecv,
|
anchor_message: MessageRecv,
|
||||||
response_set: List[str],
|
response_set: List[str],
|
||||||
send_emoji: str # Emoji query decided by planner or tools
|
send_emoji: str, # Emoji query decided by planner or tools
|
||||||
):
|
):
|
||||||
"""
|
"""
|
||||||
发送器 (Sender): 使用本类的方法发送生成的回复。
|
发送器 (Sender): 使用本类的方法发送生成的回复。
|
||||||
@@ -659,7 +669,7 @@ class PFChatting:
|
|||||||
|
|
||||||
# --- 更新关系状态 --- #
|
# --- 更新关系状态 --- #
|
||||||
await self._update_relationship(anchor_message, response_set)
|
await self._update_relationship(anchor_message, response_set)
|
||||||
|
|
||||||
else:
|
else:
|
||||||
# logger.warning(f"{log_prefix}[Sender-{thinking_id}] 发送回复失败(_send_response_messages返回None)。思考消息{thinking_id}可能已被移除。")
|
# logger.warning(f"{log_prefix}[Sender-{thinking_id}] 发送回复失败(_send_response_messages返回None)。思考消息{thinking_id}可能已被移除。")
|
||||||
# 无需清理,因为_send_response_messages返回None意味着已处理/已删除
|
# 无需清理,因为_send_response_messages返回None意味着已处理/已删除
|
||||||
@@ -675,7 +685,7 @@ class PFChatting:
|
|||||||
logger.info(f"{log_prefix} Cancelling active PF loop task.")
|
logger.info(f"{log_prefix} Cancelling active PF loop task.")
|
||||||
self._loop_task.cancel()
|
self._loop_task.cancel()
|
||||||
try:
|
try:
|
||||||
await asyncio.wait_for(self._loop_task, timeout=1.0) # Shorter timeout?
|
await asyncio.wait_for(self._loop_task, timeout=1.0) # Shorter timeout?
|
||||||
except asyncio.CancelledError:
|
except asyncio.CancelledError:
|
||||||
logger.info(f"{log_prefix} PF loop task cancelled successfully.")
|
logger.info(f"{log_prefix} PF loop task cancelled successfully.")
|
||||||
except asyncio.TimeoutError:
|
except asyncio.TimeoutError:
|
||||||
@@ -698,7 +708,9 @@ class PFChatting:
|
|||||||
config = self.heartfc_controller.global_config
|
config = self.heartfc_controller.global_config
|
||||||
rel_manager = self.heartfc_controller.relationship_manager
|
rel_manager = self.heartfc_controller.relationship_manager
|
||||||
|
|
||||||
prompt = f"你的名字是 {config.BOT_NICKNAME}。是一个女大二学生,正在QQ聊天,正在决定是否以及如何回应当前的聊天。\n"
|
prompt = (
|
||||||
|
f"你的名字是 {config.BOT_NICKNAME}。是一个女大二学生,正在QQ聊天,正在决定是否以及如何回应当前的聊天。\n"
|
||||||
|
)
|
||||||
|
|
||||||
if observed_messages:
|
if observed_messages:
|
||||||
context_texts = []
|
context_texts = []
|
||||||
@@ -706,7 +718,7 @@ class PFChatting:
|
|||||||
sender = msg.get("message_info", {}).get("user_info", {}).get("user_nickname", "未知用户")
|
sender = msg.get("message_info", {}).get("user_info", {}).get("user_nickname", "未知用户")
|
||||||
text = msg.get("detailed_plain_text", "")
|
text = msg.get("detailed_plain_text", "")
|
||||||
timestamp = msg.get("time", 0)
|
timestamp = msg.get("time", 0)
|
||||||
time_str = time.strftime('%H:%M:%S', time.localtime(timestamp)) if timestamp else ""
|
time_str = time.strftime("%H:%M:%S", time.localtime(timestamp)) if timestamp else ""
|
||||||
context_texts.append(f"{sender} ({time_str}): {text}")
|
context_texts.append(f"{sender} ({time_str}): {text}")
|
||||||
context_text = "\n".join(context_texts)
|
context_text = "\n".join(context_texts)
|
||||||
prompt += "观察到的最新聊天内容如下 (最近的消息在最后):\n---\n"
|
prompt += "观察到的最新聊天内容如下 (最近的消息在最后):\n---\n"
|
||||||
@@ -735,7 +747,7 @@ class PFChatting:
|
|||||||
)
|
)
|
||||||
|
|
||||||
prompt = await rel_manager.convert_all_person_sign_to_person_name(prompt)
|
prompt = await rel_manager.convert_all_person_sign_to_person_name(prompt)
|
||||||
prompt = parse_text_timestamps(prompt, mode="remove") # Remove timestamps before sending to LLM
|
prompt = parse_text_timestamps(prompt, mode="remove") # Remove timestamps before sending to LLM
|
||||||
|
|
||||||
return prompt
|
return prompt
|
||||||
|
|
||||||
@@ -758,8 +770,8 @@ class PFChatting:
|
|||||||
|
|
||||||
# Ensure generate_response has access to current_mind if it's crucial context
|
# Ensure generate_response has access to current_mind if it's crucial context
|
||||||
response_set = await gpt_instance.generate_response(
|
response_set = await gpt_instance.generate_response(
|
||||||
anchor_message, # Pass anchor_message positionally (matches 'message' parameter)
|
anchor_message, # Pass anchor_message positionally (matches 'message' parameter)
|
||||||
thinking_id # Pass thinking_id positionally
|
thinking_id, # Pass thinking_id positionally
|
||||||
)
|
)
|
||||||
|
|
||||||
if not response_set:
|
if not response_set:
|
||||||
@@ -815,12 +827,12 @@ class PFChatting:
|
|||||||
chat = anchor_message.chat_stream
|
chat = anchor_message.chat_stream
|
||||||
container = self.heartfc_controller.MessageManager().get_container(chat.stream_id)
|
container = self.heartfc_controller.MessageManager().get_container(chat.stream_id)
|
||||||
thinking_message = None
|
thinking_message = None
|
||||||
|
|
||||||
# 移除思考消息
|
# 移除思考消息
|
||||||
for msg in container.messages[:]: # Iterate over a copy
|
for msg in container.messages[:]: # Iterate over a copy
|
||||||
if isinstance(msg, MessageThinking) and msg.message_info.message_id == thinking_id:
|
if isinstance(msg, MessageThinking) and msg.message_info.message_id == thinking_id:
|
||||||
thinking_message = msg
|
thinking_message = msg
|
||||||
container.messages.remove(msg) # Remove the message directly here
|
container.messages.remove(msg) # Remove the message directly here
|
||||||
logger.debug(f"{self._get_log_prefix()} Removed thinking message {thinking_id} via iteration.")
|
logger.debug(f"{self._get_log_prefix()} Removed thinking message {thinking_id} via iteration.")
|
||||||
break
|
break
|
||||||
|
|
||||||
@@ -835,10 +847,10 @@ class PFChatting:
|
|||||||
first_bot_msg = None
|
first_bot_msg = None
|
||||||
# Access global_config via controller
|
# Access global_config via controller
|
||||||
bot_user_info = UserInfo(
|
bot_user_info = UserInfo(
|
||||||
user_id=self.heartfc_controller.global_config.BOT_QQ,
|
user_id=self.heartfc_controller.global_config.BOT_QQ,
|
||||||
user_nickname=self.heartfc_controller.global_config.BOT_NICKNAME,
|
user_nickname=self.heartfc_controller.global_config.BOT_NICKNAME,
|
||||||
platform=anchor_message.message_info.platform,
|
platform=anchor_message.message_info.platform,
|
||||||
)
|
)
|
||||||
for msg_text in response_set:
|
for msg_text in response_set:
|
||||||
message_segment = Seg(type="text", data=msg_text)
|
message_segment = Seg(type="text", data=msg_text)
|
||||||
bot_message = MessageSending(
|
bot_message = MessageSending(
|
||||||
@@ -857,7 +869,6 @@ class PFChatting:
|
|||||||
first_bot_msg = bot_message
|
first_bot_msg = bot_message
|
||||||
message_set.add_message(bot_message)
|
message_set.add_message(bot_message)
|
||||||
|
|
||||||
|
|
||||||
self.heartfc_controller.MessageManager().add_message(message_set)
|
self.heartfc_controller.MessageManager().add_message(message_set)
|
||||||
return first_bot_msg
|
return first_bot_msg
|
||||||
|
|
||||||
@@ -884,10 +895,10 @@ class PFChatting:
|
|||||||
message_segment = Seg(type="emoji", data=emoji_cq)
|
message_segment = Seg(type="emoji", data=emoji_cq)
|
||||||
# Access global_config via controller
|
# Access global_config via controller
|
||||||
bot_user_info = UserInfo(
|
bot_user_info = UserInfo(
|
||||||
user_id=self.heartfc_controller.global_config.BOT_QQ,
|
user_id=self.heartfc_controller.global_config.BOT_QQ,
|
||||||
user_nickname=self.heartfc_controller.global_config.BOT_NICKNAME,
|
user_nickname=self.heartfc_controller.global_config.BOT_NICKNAME,
|
||||||
platform=anchor_message.message_info.platform,
|
platform=anchor_message.message_info.platform,
|
||||||
)
|
)
|
||||||
bot_message = MessageSending(
|
bot_message = MessageSending(
|
||||||
message_id="me" + str(thinking_time_point), # 使用不同的 ID 前缀?
|
message_id="me" + str(thinking_time_point), # 使用不同的 ID 前缀?
|
||||||
chat_stream=chat,
|
chat_stream=chat,
|
||||||
@@ -898,7 +909,7 @@ class PFChatting:
|
|||||||
is_head=False,
|
is_head=False,
|
||||||
is_emoji=True,
|
is_emoji=True,
|
||||||
)
|
)
|
||||||
# Access MessageManager via controller
|
# Access MessageManager via controller
|
||||||
self.heartfc_controller.MessageManager().add_message(bot_message)
|
self.heartfc_controller.MessageManager().add_message(bot_message)
|
||||||
|
|
||||||
async def _update_relationship(self, anchor_message: Optional[MessageRecv], response_set: List[str]):
|
async def _update_relationship(self, anchor_message: Optional[MessageRecv], response_set: List[str]):
|
||||||
@@ -921,4 +932,5 @@ class PFChatting:
|
|||||||
stance=stance,
|
stance=stance,
|
||||||
)
|
)
|
||||||
mood_manager_instance.update_mood_from_emotion(emotion, config.mood_intensity_factor)
|
mood_manager_instance.update_mood_from_emotion(emotion, config.mood_intensity_factor)
|
||||||
|
|
||||||
# --- Methods moved from HeartFC_Controller end ---
|
# --- Methods moved from HeartFC_Controller end ---
|
||||||
|
|||||||
Reference in New Issue
Block a user