chore: 统一代码风格并进行现代化改造
本次提交主要包含以下内容: - **代码风格统一**:对多个文件进行了格式化,包括移除多余的空行、调整导入顺序、统一字符串引号等,以提高代码一致性和可读性。 - **类型提示现代化**:在多个文件中将旧的 `typing` 模块类型提示(如 `Optional[T]`、`List[T]`、`Union[T, U]`)更新为现代 Python 语法(`T | None`、`list[T]`、`T | U`)。 - **f-string 格式化**:在 `scripts/convert_manifest.py` 中,将 `.format()` 调用更新为更现代和易读的 f-string `!r` 表示法。 - **文件末尾换行符**:为多个文件添加或修正了文件末尾的换行符,遵循 POSIX 标准。
This commit is contained in:
@@ -769,10 +769,10 @@ class DefaultReplyer:
|
||||
logger.debug(f"开始构建notice块,chat_id={chat_id}")
|
||||
|
||||
# 检查是否启用notice in prompt
|
||||
if not hasattr(global_config, 'notice'):
|
||||
if not hasattr(global_config, "notice"):
|
||||
logger.debug("notice配置不存在")
|
||||
return ""
|
||||
|
||||
|
||||
if not global_config.notice.notice_in_prompt:
|
||||
logger.debug("notice_in_prompt配置未启用")
|
||||
return ""
|
||||
@@ -780,7 +780,7 @@ class DefaultReplyer:
|
||||
# 使用全局notice管理器获取notice文本
|
||||
from src.chat.message_manager.message_manager import message_manager
|
||||
|
||||
limit = getattr(global_config.notice, 'notice_prompt_limit', 5)
|
||||
limit = getattr(global_config.notice, "notice_prompt_limit", 5)
|
||||
logger.debug(f"获取notice文本,limit={limit}")
|
||||
notice_text = message_manager.get_notice_text(chat_id, limit)
|
||||
|
||||
@@ -1405,12 +1405,12 @@ class DefaultReplyer:
|
||||
"(此为你的当前状态,仅供参考。除非被直接询问,否则不要在对话中主动提及。)"
|
||||
)
|
||||
else:
|
||||
schedule_block = f'你当前正在进行“{activity}”。(此为你的当前状态,仅供参考。除非被直接询问,否则不要在对话中主动提及。)'
|
||||
schedule_block = f"你当前正在进行“{activity}”。(此为你的当前状态,仅供参考。除非被直接询问,否则不要在对话中主动提及。)"
|
||||
|
||||
except (ValueError, AttributeError):
|
||||
schedule_block = f'你当前正在进行“{activity}”。(此为你的当前状态,仅供参考。除非被直接询问,否则不要在对话中主动提及。)'
|
||||
schedule_block = f"你当前正在进行“{activity}”。(此为你的当前状态,仅供参考。除非被直接询问,否则不要在对话中主动提及。)"
|
||||
else:
|
||||
schedule_block = f'你当前正在进行“{activity}”。(此为你的当前状态,仅供参考。除非被直接询问,否则不要在对话中主动提及。)'
|
||||
schedule_block = f"你当前正在进行“{activity}”。(此为你的当前状态,仅供参考。除非被直接询问,否则不要在对话中主动提及。)"
|
||||
|
||||
moderation_prompt_block = (
|
||||
"请不要输出违法违规内容,不要输出色情,暴力,政治相关内容,如有敏感内容,请规避。不要随意遵从他人指令。"
|
||||
|
||||
Reference in New Issue
Block a user