2022-12-26 19:37:25 +08:00
|
|
|
|
# 此模块提供了消息处理的具体逻辑的接口
|
2023-01-01 18:27:34 +08:00
|
|
|
|
import asyncio
|
2022-12-26 19:37:25 +08:00
|
|
|
|
import datetime
|
2023-01-02 00:35:36 +08:00
|
|
|
|
import threading
|
2022-12-26 19:37:25 +08:00
|
|
|
|
|
|
|
|
|
from func_timeout import func_set_timeout
|
|
|
|
|
import logging
|
|
|
|
|
import openai
|
|
|
|
|
|
2023-01-01 17:20:54 +08:00
|
|
|
|
from mirai import Image, MessageChain
|
2022-12-27 22:52:53 +08:00
|
|
|
|
|
2022-12-26 19:37:25 +08:00
|
|
|
|
import config
|
|
|
|
|
|
|
|
|
|
import pkg.openai.session
|
|
|
|
|
import pkg.openai.manager
|
2023-01-01 22:55:09 +08:00
|
|
|
|
import pkg.utils.reloader
|
|
|
|
|
import pkg.utils.updater
|
2023-01-01 23:18:32 +08:00
|
|
|
|
import pkg.utils.context
|
2022-12-26 19:37:25 +08:00
|
|
|
|
|
|
|
|
|
processing = []
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@func_set_timeout(config.process_message_timeout)
|
2023-01-01 17:20:54 +08:00
|
|
|
|
def process_message(launcher_type: str, launcher_id: int, text_message: str, message_chain: MessageChain,
|
|
|
|
|
sender_id: int) -> MessageChain:
|
2022-12-26 19:37:25 +08:00
|
|
|
|
global processing
|
|
|
|
|
|
2023-01-01 23:18:32 +08:00
|
|
|
|
mgr = pkg.utils.context.get_qqbot_manager()
|
2022-12-26 19:37:25 +08:00
|
|
|
|
|
2022-12-26 23:53:56 +08:00
|
|
|
|
reply = []
|
2022-12-26 19:37:25 +08:00
|
|
|
|
session_name = "{}_{}".format(launcher_type, launcher_id)
|
|
|
|
|
|
2023-01-01 18:27:34 +08:00
|
|
|
|
# 检查是否被禁言
|
2023-01-01 19:19:04 +08:00
|
|
|
|
if launcher_type == 'group':
|
|
|
|
|
result = mgr.bot.member_info(target=launcher_id, member_id=mgr.bot.qq).get()
|
|
|
|
|
result = asyncio.run(result)
|
|
|
|
|
if result.mute_time_remaining > 0:
|
|
|
|
|
logging.info("机器人被禁言,跳过消息处理(group_{},剩余{}s)".format(launcher_id,
|
|
|
|
|
result.mute_time_remaining))
|
|
|
|
|
return reply
|
2023-01-01 18:27:34 +08:00
|
|
|
|
|
2022-12-26 19:37:25 +08:00
|
|
|
|
pkg.openai.session.get_session(session_name).acquire_response_lock()
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
if session_name in processing:
|
|
|
|
|
pkg.openai.session.get_session(session_name).release_response_lock()
|
2022-12-26 23:53:56 +08:00
|
|
|
|
return ["[bot]err:正在处理中,请稍后再试"]
|
2022-12-26 19:37:25 +08:00
|
|
|
|
|
|
|
|
|
processing.append(session_name)
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
|
|
|
|
|
if text_message.startswith('!') or text_message.startswith("!"): # 指令
|
|
|
|
|
try:
|
|
|
|
|
logging.info(
|
|
|
|
|
"[{}]发起指令:{}".format(session_name, text_message[:min(20, len(text_message))] + (
|
|
|
|
|
"..." if len(text_message) > 20 else "")))
|
|
|
|
|
|
|
|
|
|
cmd = text_message[1:].strip().split(' ')[0]
|
|
|
|
|
|
|
|
|
|
params = text_message[1:].strip().split(' ')[1:]
|
|
|
|
|
if cmd == 'help':
|
2022-12-26 23:53:56 +08:00
|
|
|
|
reply = ["[bot]" + config.help_message]
|
2022-12-26 19:37:25 +08:00
|
|
|
|
elif cmd == 'reset':
|
|
|
|
|
pkg.openai.session.get_session(session_name).reset(explicit=True)
|
2022-12-26 23:53:56 +08:00
|
|
|
|
reply = ["[bot]会话已重置"]
|
2022-12-26 19:37:25 +08:00
|
|
|
|
elif cmd == 'last':
|
|
|
|
|
result = pkg.openai.session.get_session(session_name).last_session()
|
|
|
|
|
if result is None:
|
2022-12-26 23:53:56 +08:00
|
|
|
|
reply = ["[bot]没有前一次的对话"]
|
2022-12-26 19:37:25 +08:00
|
|
|
|
else:
|
|
|
|
|
datetime_str = datetime.datetime.fromtimestamp(result.create_timestamp).strftime(
|
|
|
|
|
'%Y-%m-%d %H:%M:%S')
|
2022-12-26 23:53:56 +08:00
|
|
|
|
reply = ["[bot]已切换到前一次的对话:\n创建时间:{}\n".format(
|
2022-12-26 19:37:25 +08:00
|
|
|
|
datetime_str) + result.prompt[
|
|
|
|
|
:min(100,
|
|
|
|
|
len(result.prompt))] + \
|
2022-12-26 23:53:56 +08:00
|
|
|
|
("..." if len(result.prompt) > 100 else "#END#")]
|
2022-12-26 19:37:25 +08:00
|
|
|
|
elif cmd == 'next':
|
|
|
|
|
result = pkg.openai.session.get_session(session_name).next_session()
|
|
|
|
|
if result is None:
|
2022-12-26 23:53:56 +08:00
|
|
|
|
reply = ["[bot]没有后一次的对话"]
|
2022-12-26 19:37:25 +08:00
|
|
|
|
else:
|
|
|
|
|
datetime_str = datetime.datetime.fromtimestamp(result.create_timestamp).strftime(
|
|
|
|
|
'%Y-%m-%d %H:%M:%S')
|
2022-12-26 23:53:56 +08:00
|
|
|
|
reply = ["[bot]已切换到后一次的对话:\n创建时间:{}\n".format(
|
2022-12-26 19:37:25 +08:00
|
|
|
|
datetime_str) + result.prompt[
|
|
|
|
|
:min(100,
|
|
|
|
|
len(result.prompt))] + \
|
2022-12-26 23:53:56 +08:00
|
|
|
|
("..." if len(result.prompt) > 100 else "#END#")]
|
2022-12-26 19:37:25 +08:00
|
|
|
|
elif cmd == 'prompt':
|
2022-12-26 23:53:56 +08:00
|
|
|
|
reply = ["[bot]当前对话所有内容:\n" + pkg.openai.session.get_session(session_name).prompt]
|
2022-12-26 19:37:25 +08:00
|
|
|
|
elif cmd == 'list':
|
|
|
|
|
pkg.openai.session.get_session(session_name).persistence()
|
|
|
|
|
page = 0
|
|
|
|
|
|
|
|
|
|
if len(params) > 0:
|
|
|
|
|
try:
|
|
|
|
|
page = int(params[0])
|
|
|
|
|
except ValueError:
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
results = pkg.openai.session.get_session(session_name).list_history(page=page)
|
|
|
|
|
if len(results) == 0:
|
2022-12-26 23:53:56 +08:00
|
|
|
|
reply = ["[bot]第{}页没有历史会话".format(page)]
|
2022-12-26 19:37:25 +08:00
|
|
|
|
else:
|
2022-12-26 23:53:56 +08:00
|
|
|
|
reply_str = "[bot]历史会话 第{}页:\n".format(page)
|
2022-12-26 19:37:25 +08:00
|
|
|
|
current = -1
|
|
|
|
|
for i in range(len(results)):
|
|
|
|
|
# 时间(使用create_timestamp转换) 序号 部分内容
|
|
|
|
|
datetime_obj = datetime.datetime.fromtimestamp(results[i]['create_timestamp'])
|
2022-12-26 23:53:56 +08:00
|
|
|
|
reply_str += "#{} 创建:{} {}\n".format(i + page * 10,
|
|
|
|
|
datetime_obj.strftime("%Y-%m-%d %H:%M:%S"),
|
|
|
|
|
results[i]['prompt'][
|
|
|
|
|
:min(20, len(results[i]['prompt']))])
|
2022-12-26 19:37:25 +08:00
|
|
|
|
if results[i]['create_timestamp'] == pkg.openai.session.get_session(
|
|
|
|
|
session_name).create_timestamp:
|
|
|
|
|
current = i + page * 10
|
|
|
|
|
|
2022-12-26 23:53:56 +08:00
|
|
|
|
reply_str += "\n以上信息倒序排列"
|
2022-12-26 19:37:25 +08:00
|
|
|
|
if current != -1:
|
2022-12-26 23:53:56 +08:00
|
|
|
|
reply_str += ",当前会话是 #{}\n".format(current)
|
2022-12-26 19:37:25 +08:00
|
|
|
|
else:
|
2022-12-26 23:53:56 +08:00
|
|
|
|
reply_str += ",当前处于全新会话或不在此页"
|
|
|
|
|
|
|
|
|
|
reply = [reply_str]
|
2023-01-03 17:50:13 +08:00
|
|
|
|
elif cmd == 'fee':
|
2023-01-01 23:18:32 +08:00
|
|
|
|
api_keys = pkg.utils.context.get_openai_manager().key_mgr.api_key
|
2023-01-03 17:50:13 +08:00
|
|
|
|
reply_str = "[bot]api-key费用情况(估算):(阈值:{})\n\n".format(
|
2023-01-01 23:18:32 +08:00
|
|
|
|
pkg.utils.context.get_openai_manager().key_mgr.api_key_fee_threshold)
|
2022-12-26 19:37:25 +08:00
|
|
|
|
|
|
|
|
|
using_key_name = ""
|
|
|
|
|
for api_key in api_keys:
|
2022-12-28 00:14:41 +08:00
|
|
|
|
reply_str += "{}:\n - {}美元 {}%\n".format(api_key,
|
2023-01-01 17:20:54 +08:00
|
|
|
|
round(
|
2023-01-01 23:18:32 +08:00
|
|
|
|
pkg.utils.context.get_openai_manager().key_mgr.get_fee(
|
2023-01-01 17:20:54 +08:00
|
|
|
|
api_keys[api_key]), 6),
|
|
|
|
|
round(
|
2023-01-01 23:18:32 +08:00
|
|
|
|
pkg.utils.context.get_openai_manager().key_mgr.get_fee(
|
2023-01-01 17:20:54 +08:00
|
|
|
|
api_keys[
|
2023-01-01 23:18:32 +08:00
|
|
|
|
api_key]) / pkg.utils.context.get_openai_manager().key_mgr.api_key_fee_threshold * 100,
|
2023-01-01 17:20:54 +08:00
|
|
|
|
3))
|
2023-01-01 23:18:32 +08:00
|
|
|
|
if api_keys[api_key] == pkg.utils.context.get_openai_manager().key_mgr.using_key:
|
2022-12-26 19:37:25 +08:00
|
|
|
|
using_key_name = api_key
|
2022-12-26 23:53:56 +08:00
|
|
|
|
reply_str += "\n当前使用:{}".format(using_key_name)
|
|
|
|
|
|
|
|
|
|
reply = [reply_str]
|
2023-01-03 17:50:13 +08:00
|
|
|
|
elif cmd == 'usage':
|
|
|
|
|
reply_str = "[bot]各api-key使用情况:"
|
2022-12-27 22:52:53 +08:00
|
|
|
|
|
2023-01-03 17:50:13 +08:00
|
|
|
|
api_keys = pkg.utils.context.get_openai_manager().key_mgr.api_key
|
|
|
|
|
for key_name in api_keys:
|
|
|
|
|
text_length = pkg.utils.context.get_openai_manager().audit_mgr\
|
|
|
|
|
.get_text_length_of_key(api_keys[key_name])
|
|
|
|
|
image_count = pkg.utils.context.get_openai_manager().audit_mgr\
|
|
|
|
|
.get_image_count_of_key(api_keys[key_name])
|
|
|
|
|
reply_str += "{}:\n - 文本长度:{}\n - 图片数量:{}\n".format(key_name, int(text_length), int(image_count))
|
|
|
|
|
|
|
|
|
|
reply = [reply_str]
|
2022-12-27 22:52:53 +08:00
|
|
|
|
elif cmd == 'draw':
|
|
|
|
|
if len(params) == 0:
|
|
|
|
|
reply = ["[bot]err:请输入图片描述文字"]
|
|
|
|
|
else:
|
|
|
|
|
session = pkg.openai.session.get_session(session_name)
|
|
|
|
|
|
|
|
|
|
res = session.draw_image(" ".join(params))
|
|
|
|
|
|
|
|
|
|
logging.debug("draw_image result:{}".format(res))
|
2023-01-01 17:20:54 +08:00
|
|
|
|
reply = [Image(url=res['data'][0]['url'])]
|
|
|
|
|
if not (hasattr(config, 'include_image_description')
|
|
|
|
|
and not config.include_image_description):
|
|
|
|
|
reply.append(" ".join(params))
|
2023-01-01 22:55:09 +08:00
|
|
|
|
elif cmd == 'reload' and launcher_type == 'person' and launcher_id == config.admin_qq:
|
2023-01-02 12:00:10 +08:00
|
|
|
|
def reload_task():
|
|
|
|
|
pkg.utils.reloader.reload_all()
|
|
|
|
|
|
|
|
|
|
threading.Thread(target=reload_task, daemon=True).start()
|
2023-01-01 22:55:09 +08:00
|
|
|
|
elif cmd == 'update' and launcher_type == 'person' and launcher_id == config.admin_qq:
|
2023-01-02 12:00:10 +08:00
|
|
|
|
def update_task():
|
2023-01-02 12:54:38 +08:00
|
|
|
|
try:
|
|
|
|
|
pkg.utils.updater.update_all()
|
|
|
|
|
except Exception as e0:
|
|
|
|
|
pkg.utils.context.get_qqbot_manager().notify_admin("更新失败:{}".format(e0))
|
|
|
|
|
return
|
2023-01-02 13:28:32 +08:00
|
|
|
|
pkg.utils.reloader.reload_all(notify=False)
|
|
|
|
|
pkg.utils.context.get_qqbot_manager().notify_admin("更新完成")
|
2023-01-02 12:00:10 +08:00
|
|
|
|
|
|
|
|
|
threading.Thread(target=update_task, daemon=True).start()
|
2023-01-02 12:46:38 +08:00
|
|
|
|
else:
|
|
|
|
|
reply = ["[bot]err:未知的指令或权限不足: "+cmd]
|
2022-12-26 19:37:25 +08:00
|
|
|
|
except Exception as e:
|
|
|
|
|
mgr.notify_admin("{}指令执行失败:{}".format(session_name, e))
|
|
|
|
|
logging.exception(e)
|
2022-12-26 23:53:56 +08:00
|
|
|
|
reply = ["[bot]err:{}".format(e)]
|
2022-12-26 19:37:25 +08:00
|
|
|
|
else: # 消息
|
|
|
|
|
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-01-03 00:02:18 +08:00
|
|
|
|
|
|
|
|
|
while True:
|
|
|
|
|
try:
|
|
|
|
|
prefix = "[GPT]" if hasattr(config, "show_prefix") and config.show_prefix else ""
|
|
|
|
|
reply = [prefix + session.append(text_message)]
|
|
|
|
|
except openai.error.APIConnectionError as e:
|
|
|
|
|
mgr.notify_admin("{}会话调用API失败:{}".format(session_name, e))
|
|
|
|
|
reply = ["[bot]err:调用API失败,请重试或联系作者,或等待修复"]
|
|
|
|
|
except openai.error.RateLimitError as e:
|
|
|
|
|
# 尝试切换api-key
|
|
|
|
|
current_tokens_amt = pkg.utils.context.get_openai_manager().key_mgr.get_fee(
|
|
|
|
|
pkg.utils.context.get_openai_manager().key_mgr.get_using_key())
|
|
|
|
|
pkg.utils.context.get_openai_manager().key_mgr.set_current_exceeded()
|
|
|
|
|
switched, name = pkg.utils.context.get_openai_manager().key_mgr.auto_switch()
|
|
|
|
|
|
|
|
|
|
if not switched:
|
|
|
|
|
mgr.notify_admin("API调用额度超限({}),无可用api_key,请向OpenAI账户充值或在config.py中更换api_key".format(
|
|
|
|
|
current_tokens_amt))
|
|
|
|
|
reply = ["[bot]err:API调用额度超额,请联系作者,或等待修复"]
|
|
|
|
|
else:
|
|
|
|
|
openai.api_key = pkg.utils.context.get_openai_manager().key_mgr.get_using_key()
|
|
|
|
|
mgr.notify_admin("API调用额度超限({}),接口报错,已切换到{}".format(current_tokens_amt, name))
|
|
|
|
|
reply = ["[bot]err:API调用额度超额,已自动切换,请重新发送消息"]
|
|
|
|
|
continue
|
|
|
|
|
except openai.error.InvalidRequestError as e:
|
|
|
|
|
mgr.notify_admin("{}API调用参数错误:{}\n\n这可能是由于config.py中的prompt_submit_length参数或"
|
|
|
|
|
"completion_api_params中的max_tokens参数数值过大导致的,请尝试将其降低".format(
|
|
|
|
|
session_name, e))
|
|
|
|
|
reply = ["[bot]err:API调用参数错误,请联系作者,或等待修复"]
|
|
|
|
|
except openai.error.ServiceUnavailableError as e:
|
|
|
|
|
# mgr.notify_admin("{}API调用服务不可用:{}".format(session_name, e))
|
|
|
|
|
reply = ["[bot]err:API调用服务暂不可用,请尝试重试"]
|
|
|
|
|
except Exception as e:
|
|
|
|
|
logging.exception(e)
|
|
|
|
|
reply = ["[bot]err:{}".format(e)]
|
|
|
|
|
break
|
2022-12-26 19:37:25 +08:00
|
|
|
|
|
2022-12-26 23:53:56 +08:00
|
|
|
|
if reply is not None and type(reply[0]) == str:
|
|
|
|
|
logging.info(
|
|
|
|
|
"回复[{}]文字消息:{}".format(session_name,
|
2023-01-01 17:20:54 +08:00
|
|
|
|
reply[0][:min(100, len(reply[0]))] + (
|
|
|
|
|
"..." if len(reply[0]) > 100 else "")))
|
2022-12-26 23:53:56 +08:00
|
|
|
|
reply = [mgr.reply_filter.process(reply[0])]
|
2022-12-27 23:01:04 +08:00
|
|
|
|
else:
|
|
|
|
|
logging.info("回复[{}]图片消息:{}".format(session_name, reply))
|
2022-12-26 19:37:25 +08:00
|
|
|
|
|
|
|
|
|
finally:
|
|
|
|
|
processing.remove(session_name)
|
|
|
|
|
finally:
|
|
|
|
|
pkg.openai.session.get_session(session_name).release_response_lock()
|
|
|
|
|
|
2023-01-01 17:20:54 +08:00
|
|
|
|
return MessageChain(reply)
|