fix rudff

This commit is contained in:
SengokuCola
2025-07-12 23:35:05 +08:00
parent b74376387a
commit 58ef00865d
2 changed files with 2 additions and 4 deletions

View File

@@ -1,7 +1,5 @@
import time
from typing import Optional
from src.chat.message_receive.chat_stream import ChatStream
from src.chat.message_receive.message import UserInfo
from src.common.logger import get_logger
from typing import Dict, Any
from src.config.config import global_config

View File

@@ -1,4 +1,4 @@
from typing import List, Optional, Any, Dict
from typing import List, Any, Dict
from src.common.logger import get_logger
from src.chat.focus_chat.hfc_utils import CycleDetail
from src.chat.message_receive.chat_stream import get_chat_manager
@@ -185,7 +185,7 @@ class ActionModifier:
llm_judge_actions[action_name] = action_info
elif activation_type == "never":
reason = f"激活类型为never"
reason = "激活类型为never"
deactivated_actions.append((action_name, reason))
logger.debug(f"{self.log_prefix}未激活动作: {action_name},原因: 激活类型为never")