From 1710f5a057e43c9c86bfe0a1f8ea7fcde9a977ef Mon Sep 17 00:00:00 2001 From: Bakadax Date: Fri, 16 May 2025 16:17:07 +0800 Subject: [PATCH] =?UTF-8?q?fix.=20=E4=BF=AE=E5=A4=8D=20config.py?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/config/config.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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}, } # 原地修改,将 字符串版本表达式 转换成 版本对象