diff --git a/src/config/config.py b/src/config/config.py index 8c3cbb1a..c35c37cf 100644 --- a/src/config/config.py +++ b/src/config/config.py @@ -349,6 +349,7 @@ class BotConfig: llm_nickname_mapping: Dict[str, str] = field(default_factory=lambda: {}) llm_scheduler_all: Dict[str, str] = field(default_factory=lambda: {}) llm_scheduler_doing: Dict[str, str] = field(default_factory=lambda: {}) + llm_PFC_relationship_eval: Dict[str, str] = field(default_factory=lambda: {}) api_urls: Dict[str, str] = field(default_factory=lambda: {}) @@ -878,8 +879,8 @@ class BotConfig: "chat": {"func": chat, "support": ">=1.6.0", "necessary": False}, "normal_chat": {"func": normal_chat, "support": ">=1.6.0", "necessary": False}, "focus_chat": {"func": focus_chat, "support": ">=1.6.0", "necessary": False}, - "group_nickname": {"func": group_nickname, "support": ">=1.6.1.1", "necessary": False}, - "pfc": {"func": pfc, "support": ">=1.6.2.4", "necessary": False}, + "group_nickname": {"func": group_nickname, "support": ">=1.7.1", "necessary": False}, + "pfc": {"func": pfc, "support": ">=1.7.1", "necessary": False}, } # 原地修改,将 字符串版本表达式 转换成 版本对象