From dbe2f17e1a9d5c4cfc65eeac9c3c425b98ef3e47 Mon Sep 17 00:00:00 2001 From: vision Date: Sat, 17 Jun 2023 15:46:03 +0800 Subject: [PATCH 1/4] add reply_suffix MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 增加私聊和群聊回复后缀的可选配置 --- channel/chat_channel.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/channel/chat_channel.py b/channel/chat_channel.py index 6a2f11e81..ffb49c8bf 100644 --- a/channel/chat_channel.py +++ b/channel/chat_channel.py @@ -223,9 +223,9 @@ def _decorate_reply(self, context: Context, reply: Reply) -> Reply: return self._decorate_reply(context, reply) if context.get("isgroup", False): reply_text = "@" + context["msg"].actual_user_nickname + "\n" + reply_text.strip() - reply_text = conf().get("group_chat_reply_prefix", "") + reply_text + reply_text = conf().get("group_chat_reply_prefix", "") + reply_text + conf().get("group_chat_reply_suffix", "") else: - reply_text = conf().get("single_chat_reply_prefix", "") + reply_text + reply_text = conf().get("single_chat_reply_prefix", "") + reply_text + conf().get("single_chat_reply_suffix", "") reply.content = reply_text elif reply.type == ReplyType.ERROR or reply.type == ReplyType.INFO: reply.content = "[" + str(reply.type) + "]\n" + reply.content From e2636ed54a4cdf6e75f0a51833b08e0de7302932 Mon Sep 17 00:00:00 2001 From: vision Date: Sat, 17 Jun 2023 15:53:49 +0800 Subject: [PATCH 2/4] add replay_suffix MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 增加自动回复后缀的可选配置参数 --- config.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/config.py b/config.py index 4befe9863..e642d924a 100644 --- a/config.py +++ b/config.py @@ -22,8 +22,10 @@ # Bot触发配置 "single_chat_prefix": ["bot", "@bot"], # 私聊时文本需要包含该前缀才能触发机器人回复 "single_chat_reply_prefix": "[bot] ", # 私聊时自动回复的前缀,用于区分真人 - "group_chat_prefix": ["@bot"], # 群聊时包含该前缀则会触发机器人回复 + "single_chat_reply_suffix": "\n自定义私聊后缀" # 私聊时自动回复的后缀,\n 是换行 + "group_chat_prefix": ["@bot"], # 群聊时包含该前缀则会触发机器人回复 "group_chat_reply_prefix": "", # 群聊时自动回复的前缀 + "group_chat_reply_suffix": "\n自定义群聊后缀", # 群聊时自动回复的后缀,\n 是换行 "group_chat_keyword": [], # 群聊时包含该关键词则会触发机器人回复 "group_at_off": False, # 是否关闭群聊时@bot的触发 "group_name_white_list": ["ChatGPT测试群", "ChatGPT测试群2"], # 开启自动回复的群名称列表 From ff3fdfa738a41e5a28aac8648394093bc5bd17ae Mon Sep 17 00:00:00 2001 From: vision Date: Sat, 17 Jun 2023 16:36:08 +0800 Subject: [PATCH 3/4] add reply_suffix --- config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.py b/config.py index e642d924a..d4f861844 100644 --- a/config.py +++ b/config.py @@ -22,10 +22,10 @@ # Bot触发配置 "single_chat_prefix": ["bot", "@bot"], # 私聊时文本需要包含该前缀才能触发机器人回复 "single_chat_reply_prefix": "[bot] ", # 私聊时自动回复的前缀,用于区分真人 - "single_chat_reply_suffix": "\n自定义私聊后缀" # 私聊时自动回复的后缀,\n 是换行 + "single_chat_reply_suffix": "" # 私聊时自动回复的后缀,\n 是换行 "group_chat_prefix": ["@bot"], # 群聊时包含该前缀则会触发机器人回复 "group_chat_reply_prefix": "", # 群聊时自动回复的前缀 - "group_chat_reply_suffix": "\n自定义群聊后缀", # 群聊时自动回复的后缀,\n 是换行 + "group_chat_reply_suffix": "", # 群聊时自动回复的后缀,\n 是换行 "group_chat_keyword": [], # 群聊时包含该关键词则会触发机器人回复 "group_at_off": False, # 是否关闭群聊时@bot的触发 "group_name_white_list": ["ChatGPT测试群", "ChatGPT测试群2"], # 开启自动回复的群名称列表 From 109b362ebd816afad1cac557c6250b70eeae8de2 Mon Sep 17 00:00:00 2001 From: vision Date: Sat, 17 Jun 2023 16:42:52 +0800 Subject: [PATCH 4/4] Update config.py --- config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.py b/config.py index d4f861844..cdce26f75 100644 --- a/config.py +++ b/config.py @@ -22,10 +22,10 @@ # Bot触发配置 "single_chat_prefix": ["bot", "@bot"], # 私聊时文本需要包含该前缀才能触发机器人回复 "single_chat_reply_prefix": "[bot] ", # 私聊时自动回复的前缀,用于区分真人 - "single_chat_reply_suffix": "" # 私聊时自动回复的后缀,\n 是换行 + "single_chat_reply_suffix": "", # 私聊时自动回复的后缀,\n 可以换行 "group_chat_prefix": ["@bot"], # 群聊时包含该前缀则会触发机器人回复 "group_chat_reply_prefix": "", # 群聊时自动回复的前缀 - "group_chat_reply_suffix": "", # 群聊时自动回复的后缀,\n 是换行 + "group_chat_reply_suffix": "", # 群聊时自动回复的后缀,\n 可以换行 "group_chat_keyword": [], # 群聊时包含该关键词则会触发机器人回复 "group_at_off": False, # 是否关闭群聊时@bot的触发 "group_name_white_list": ["ChatGPT测试群", "ChatGPT测试群2"], # 开启自动回复的群名称列表