From f7cd34891249f7ad5b1ba3d167caa52f281fd442 Mon Sep 17 00:00:00 2001 From: resphina <69687075+resphinas@users.noreply.github.com> Date: Sun, 3 Sep 2023 19:04:43 +0800 Subject: [PATCH] Update claude_ai_bot.py --- bot/claude/claude_ai_bot.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bot/claude/claude_ai_bot.py b/bot/claude/claude_ai_bot.py index 0959124..d97df16 100644 --- a/bot/claude/claude_ai_bot.py +++ b/bot/claude/claude_ai_bot.py @@ -70,10 +70,10 @@ class ClaudeAIBot(Bot, OpenAIImage): uuid = res[0]['uuid'] except: if "App unavailable" in response.text: - logger.warn("The IP is not allowed to be used on Claude") + logger.error("IP error: The IP is not allowed to be used on Claude") self.error = "ip所在地区不被claude支持" elif "Invalid authorization" in response.text: - logger.warn("Cookie error: Invalid authorization of claude, check cookie please.") + logger.error("Cookie error: Invalid authorization of claude, check cookie please.") self.error = "无法通过claude身份验证,请检查cookie" return None return uuid @@ -192,6 +192,7 @@ class ClaudeAIBot(Bot, OpenAIImage): reply_content = ''.join(completions) if "rate limi" in reply_content: + logger.error("rate limit error: 对话达到系统速率限制,与cladue同步,请进入官网查看解除限制时间") return Reply(ReplyType.ERROR, "对话达到系统速率限制,与cladue同步,请进入官网查看解除限制时间") logger.info(f"[CLAUDE] reply={reply_content}, total_tokens=invisible") self.sessions.session_reply(reply_content, session_id, 100)