From dbe39c2477d1249936b9b73d12c423b8a4c69877 Mon Sep 17 00:00:00 2001 From: taylor Date: Mon, 14 Oct 2024 21:35:36 +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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maubot_llmplus/aibot.py b/maubot_llmplus/aibot.py index 5e1689d..93b1210 100644 --- a/maubot_llmplus/aibot.py +++ b/maubot_llmplus/aibot.py @@ -148,7 +148,7 @@ class AiBotPlugin(AbsExtraConfigPlugin): show_infos.append("platform detail: \n") # 查询当前ai平台的配置信息 p_m_dict = dict(self.config['platforms'][self.get_cur_platform()]) - for k, v in p_m_dict: + for k, v in p_m_dict.items(): show_infos.append(f"- {k}: {v}\n") # 当前使用的model show_infos.append(f"model: {self.config.cur_model}\n")