瀏覽代碼

Merge pull request #1816 from xywhnh/master

修复gemini 插件的两个问题
master
Saboteur7 GitHub 8 月之前
父節點
當前提交
2c4b8a44dc
沒有發現已知的金鑰在資料庫的簽署中 GPG Key ID: B5690EEEBB952194
共有 1 個文件被更改,包括 3 次插入0 次删除
  1. +3
    -0
      bot/gemini/google_gemini_bot.py

+ 3
- 0
bot/gemini/google_gemini_bot.py 查看文件

@@ -44,6 +44,7 @@ class GoogleGeminiBot(Bot):
except Exception as e:
logger.error("[Gemini] fetch reply error, may contain unsafe content")
logger.error(e)
return Reply(ReplyType.ERROR, "invoke [Gemini] api failed!")

def _convert_to_gemini_messages(self, messages: list):
res = []
@@ -63,6 +64,8 @@ class GoogleGeminiBot(Bot):
def _filter_messages(self, messages: list):
res = []
turn = "user"
if not messages:
return res
for i in range(len(messages) - 1, -1, -1):
message = messages[i]
if message.get("role") != turn:


Loading…
取消
儲存