From 8db87b1eca2359af444fcff8e6abf977ea854f7f Mon Sep 17 00:00:00 2001 From: taylor Date: Mon, 14 Oct 2024 21:46:40 +0800 Subject: [PATCH] =?UTF-8?q?add:=20=E5=A2=9E=E5=8A=A0=E6=9F=A5=E7=9C=8B?= =?UTF-8?q?=E5=BD=93=E5=89=8D=E4=BD=BF=E7=94=A8=E7=9A=84ai=E5=B9=B3?= =?UTF-8?q?=E5=8F=B0=E5=91=BD=E4=BB=A4=20add:=20=E5=A2=9E=E5=8A=A0?= =?UTF-8?q?=E6=9F=A5=E7=9C=8Binfo=E5=91=BD=E4=BB=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- maubot_llmplus/aibot.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/maubot_llmplus/aibot.py b/maubot_llmplus/aibot.py index e8dd045..e16b103 100644 --- a/maubot_llmplus/aibot.py +++ b/maubot_llmplus/aibot.py @@ -142,10 +142,10 @@ class AiBotPlugin(AbsExtraConfigPlugin): async def info(self, event: MessageEvent) -> None: show_infos = [] # 当前机器人名称 - show_infos.append(f"bot name: {self.get_bot_name()}\n") + show_infos.append(f"bot name: {self.get_bot_name()}\n\n") # 查询当前使用的ai平台 - show_infos.append(f"platform: {self.get_cur_platform()}\n") - show_infos.append("platform detail: \n") + show_infos.append(f"platform: {self.get_cur_platform()}\n\n") + show_infos.append("platform detail: \n\n") # 查询当前ai平台的配置信息 p_m_dict = dict(self.config['platforms'][self.get_cur_platform()]) for k, v in p_m_dict.items():