2023-01-14 20:34:33 +08:00
|
|
|
|
# 普通消息处理模块
|
|
|
|
|
import logging
|
2023-02-25 00:27:14 +08:00
|
|
|
|
import time
|
2023-01-14 20:34:33 +08:00
|
|
|
|
import openai
|
|
|
|
|
import pkg.utils.context
|
|
|
|
|
import pkg.openai.session
|
|
|
|
|
|
2023-01-14 22:36:48 +08:00
|
|
|
|
import pkg.plugin.host as plugin_host
|
|
|
|
|
import pkg.plugin.models as plugin_models
|
2023-03-04 13:53:18 +08:00
|
|
|
|
import pkg.qqbot.blob as blob
|
2023-01-14 20:34:33 +08:00
|
|
|
|
|
2023-01-15 13:57:05 +08:00
|
|
|
|
|
2023-02-08 17:06:54 +08:00
|
|
|
|
def handle_exception(notify_admin: str = "", set_reply: str = "") -> list:
|
|
|
|
|
"""处理异常,当notify_admin不为空时,会通知管理员,返回通知用户的消息"""
|
|
|
|
|
import config
|
|
|
|
|
pkg.utils.context.get_qqbot_manager().notify_admin(notify_admin)
|
|
|
|
|
if hasattr(config, 'hide_exce_info_to_user') and config.hide_exce_info_to_user:
|
|
|
|
|
if hasattr(config, 'alter_tip_message'):
|
|
|
|
|
return [config.alter_tip_message] if config.alter_tip_message else []
|
|
|
|
|
else:
|
|
|
|
|
return ["[bot]出错了,请重试或联系管理员"]
|
|
|
|
|
else:
|
|
|
|
|
return [set_reply]
|
|
|
|
|
|
|
|
|
|
|
2023-01-15 13:57:05 +08:00
|
|
|
|
def process_normal_message(text_message: str, mgr, config, launcher_type: str,
|
|
|
|
|
launcher_id: int, sender_id: int) -> list:
|
2023-01-14 20:34:33 +08:00
|
|
|
|
session_name = f"{launcher_type}_{launcher_id}"
|
|
|
|
|
logging.info("[{}]发送消息:{}".format(session_name, text_message[:min(20, len(text_message))] + (
|
|
|
|
|
"..." if len(text_message) > 20 else "")))
|
|
|
|
|
|
|
|
|
|
session = pkg.openai.session.get_session(session_name)
|
|
|
|
|
|
2023-02-09 14:33:24 +08:00
|
|
|
|
unexpected_exception_times = 0
|
|
|
|
|
|
|
|
|
|
max_unexpected_exception_times = 3
|
|
|
|
|
|
2023-01-15 13:57:05 +08:00
|
|
|
|
reply = []
|
2023-01-14 20:34:33 +08:00
|
|
|
|
while True:
|
2023-02-09 14:33:24 +08:00
|
|
|
|
if unexpected_exception_times >= max_unexpected_exception_times:
|
2023-02-09 15:06:47 +08:00
|
|
|
|
reply = handle_exception(notify_admin=f"{session_name},多次尝试失败。", set_reply=f"[bot]多次尝试失败,请重试或联系管理员")
|
2023-02-09 14:33:24 +08:00
|
|
|
|
break
|
2023-01-14 20:34:33 +08:00
|
|
|
|
try:
|
|
|
|
|
prefix = "[GPT]" if hasattr(config, "show_prefix") and config.show_prefix else ""
|
2023-01-15 13:57:05 +08:00
|
|
|
|
|
|
|
|
|
text = session.append(text_message)
|
|
|
|
|
|
|
|
|
|
# 触发插件事件
|
|
|
|
|
args = {
|
|
|
|
|
"launcher_type": launcher_type,
|
|
|
|
|
"launcher_id": launcher_id,
|
|
|
|
|
"sender_id": sender_id,
|
|
|
|
|
"session": session,
|
|
|
|
|
"prefix": prefix,
|
|
|
|
|
"response_text": text
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
event = pkg.plugin.host.emit(plugin_models.NormalMessageResponded, **args)
|
2023-01-15 20:37:23 +08:00
|
|
|
|
|
|
|
|
|
if event.get_return_value("prefix") is not None:
|
|
|
|
|
prefix = event.get_return_value("prefix")
|
|
|
|
|
|
2023-01-15 13:57:05 +08:00
|
|
|
|
if event.get_return_value("reply") is not None:
|
2023-01-15 21:13:44 +08:00
|
|
|
|
reply = event.get_return_value("reply")
|
2023-01-15 13:57:05 +08:00
|
|
|
|
|
|
|
|
|
if not event.is_prevented_default():
|
2023-03-04 13:53:18 +08:00
|
|
|
|
reply = blob.check_text(prefix + text)
|
2023-01-14 20:34:33 +08:00
|
|
|
|
except openai.error.APIConnectionError as e:
|
2023-02-09 15:05:00 +08:00
|
|
|
|
err_msg = str(e)
|
|
|
|
|
if err_msg.__contains__('Error communicating with OpenAI'):
|
|
|
|
|
reply = handle_exception("{}会话调用API失败:{}\n请尝试关闭网络代理来解决此问题。".format(session_name, e),
|
|
|
|
|
"[bot]err:调用API失败,请重试或联系管理员,或等待修复")
|
|
|
|
|
else:
|
|
|
|
|
reply = handle_exception("{}会话调用API失败:{}".format(session_name, e), "[bot]err:调用API失败,请重试或联系管理员,或等待修复")
|
2023-01-14 20:34:33 +08:00
|
|
|
|
except openai.error.RateLimitError as e:
|
|
|
|
|
logging.debug(type(e))
|
2023-01-25 22:51:09 +08:00
|
|
|
|
logging.debug(e.error['message'])
|
2023-01-14 22:36:48 +08:00
|
|
|
|
|
2023-01-25 22:51:09 +08:00
|
|
|
|
if 'message' in e.error and e.error['message'].__contains__('You exceeded your current quota'):
|
|
|
|
|
# 尝试切换api-key
|
|
|
|
|
current_key_name = pkg.utils.context.get_openai_manager().key_mgr.get_key_name(
|
|
|
|
|
pkg.utils.context.get_openai_manager().key_mgr.using_key
|
|
|
|
|
)
|
|
|
|
|
pkg.utils.context.get_openai_manager().key_mgr.set_current_exceeded()
|
2023-01-14 22:36:48 +08:00
|
|
|
|
|
2023-01-25 22:51:09 +08:00
|
|
|
|
# 触发插件事件
|
|
|
|
|
args = {
|
|
|
|
|
'key_name': current_key_name,
|
|
|
|
|
'usage': pkg.utils.context.get_openai_manager().audit_mgr
|
|
|
|
|
.get_usage(pkg.utils.context.get_openai_manager().key_mgr.get_using_key_md5()),
|
|
|
|
|
'exceeded_keys': pkg.utils.context.get_openai_manager().key_mgr.exceeded,
|
|
|
|
|
}
|
|
|
|
|
event = plugin_host.emit(plugin_models.KeyExceeded, **args)
|
|
|
|
|
|
|
|
|
|
if not event.is_prevented_default():
|
|
|
|
|
switched, name = pkg.utils.context.get_openai_manager().key_mgr.auto_switch()
|
|
|
|
|
|
|
|
|
|
if not switched:
|
2023-02-08 17:06:54 +08:00
|
|
|
|
reply = handle_exception(
|
2023-02-09 15:05:00 +08:00
|
|
|
|
"api-key调用额度超限({}),无可用api_key,请向OpenAI账户充值或在config.py中更换api_key;如果你认为这是误判,请尝试重启程序。".format(
|
|
|
|
|
current_key_name), "[bot]err:API调用额度超额,请联系管理员,或等待修复")
|
2023-01-25 22:51:09 +08:00
|
|
|
|
else:
|
|
|
|
|
openai.api_key = pkg.utils.context.get_openai_manager().key_mgr.get_using_key()
|
|
|
|
|
mgr.notify_admin("api-key调用额度超限({}),接口报错,已切换到{}".format(current_key_name, name))
|
|
|
|
|
reply = ["[bot]err:API调用额度超额,已自动切换,请重新发送消息"]
|
|
|
|
|
continue
|
2023-01-25 23:07:31 +08:00
|
|
|
|
elif 'message' in e.error and e.error['message'].__contains__('You can retry your request'):
|
|
|
|
|
# 重试
|
2023-02-09 14:33:24 +08:00
|
|
|
|
unexpected_exception_times += 1
|
|
|
|
|
continue
|
|
|
|
|
elif 'message' in e.error and e.error['message']\
|
|
|
|
|
.__contains__('The server had an error while processing your request'):
|
|
|
|
|
# 重试
|
|
|
|
|
unexpected_exception_times += 1
|
2023-01-25 23:07:31 +08:00
|
|
|
|
continue
|
2023-01-25 22:51:09 +08:00
|
|
|
|
else:
|
2023-02-08 17:06:54 +08:00
|
|
|
|
reply = handle_exception("{}会话调用API失败:{}".format(session_name, e),
|
|
|
|
|
"[bot]err:RateLimitError,请重试或联系作者,或等待修复")
|
2023-01-14 20:34:33 +08:00
|
|
|
|
except openai.error.InvalidRequestError as e:
|
2023-02-08 17:06:54 +08:00
|
|
|
|
reply = handle_exception("{}API调用参数错误:{}\n\n这可能是由于config.py中的prompt_submit_length参数或"
|
2023-01-14 20:34:33 +08:00
|
|
|
|
"completion_api_params中的max_tokens参数数值过大导致的,请尝试将其降低".format(
|
2023-02-09 15:05:00 +08:00
|
|
|
|
session_name, e), "[bot]err:API调用参数错误,请联系管理员,或等待修复")
|
2023-01-14 20:34:33 +08:00
|
|
|
|
except openai.error.ServiceUnavailableError as e:
|
2023-02-09 15:05:00 +08:00
|
|
|
|
reply = handle_exception("{}API调用服务不可用:{}".format(session_name, e), "[bot]err:API调用服务不可用,请重试或联系管理员,或等待修复")
|
2023-01-14 20:34:33 +08:00
|
|
|
|
except Exception as e:
|
|
|
|
|
logging.exception(e)
|
2023-02-08 17:06:54 +08:00
|
|
|
|
reply = handle_exception("{}会话处理异常:{}".format(session_name, e), "[bot]err:{}".format(e))
|
2023-01-14 20:34:33 +08:00
|
|
|
|
break
|
|
|
|
|
|
2023-01-15 13:57:05 +08:00
|
|
|
|
return reply
|