2022-12-10 16:40:05 +08:00
|
|
|
|
import asyncio
|
|
|
|
|
import threading
|
|
|
|
|
|
|
|
|
|
import openai.error
|
2022-12-07 23:37:52 +08:00
|
|
|
|
from mirai import At, GroupMessage, MessageEvent, Mirai, Plain, StrangerMessage, WebSocketAdapter, FriendMessage, Image
|
2022-12-09 16:18:25 +08:00
|
|
|
|
|
|
|
|
|
import config
|
2022-12-07 23:37:52 +08:00
|
|
|
|
import pkg.openai.session
|
|
|
|
|
from func_timeout import func_set_timeout, FunctionTimedOut
|
2022-12-08 14:28:46 +08:00
|
|
|
|
import datetime
|
2022-12-08 21:58:02 +08:00
|
|
|
|
import logging
|
2022-12-07 23:37:52 +08:00
|
|
|
|
|
2022-12-10 00:33:42 +08:00
|
|
|
|
help_text = config.help_message
|
2022-12-07 23:37:52 +08:00
|
|
|
|
|
|
|
|
|
inst = None
|
|
|
|
|
|
|
|
|
|
processing = []
|
|
|
|
|
|
2022-12-08 12:06:04 +08:00
|
|
|
|
|
2022-12-07 23:37:52 +08:00
|
|
|
|
class QQBotManager:
|
|
|
|
|
timeout = 60
|
|
|
|
|
retry = 3
|
|
|
|
|
|
|
|
|
|
bot = None
|
|
|
|
|
|
|
|
|
|
def __init__(self, mirai_http_api_config: dict, timeout: int = 60, retry: int = 3):
|
|
|
|
|
|
|
|
|
|
self.timeout = timeout
|
|
|
|
|
self.retry = retry
|
|
|
|
|
|
|
|
|
|
bot = Mirai(
|
|
|
|
|
qq=mirai_http_api_config['qq'],
|
|
|
|
|
adapter=WebSocketAdapter(
|
|
|
|
|
verify_key=mirai_http_api_config['verifyKey'],
|
|
|
|
|
host=mirai_http_api_config['host'],
|
2022-12-08 12:06:04 +08:00
|
|
|
|
port=mirai_http_api_config['port']
|
2022-12-07 23:37:52 +08:00
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
@bot.on(FriendMessage)
|
|
|
|
|
async def on_friend_message(event: FriendMessage):
|
|
|
|
|
return await self.on_person_message(event)
|
|
|
|
|
|
|
|
|
|
@bot.on(StrangerMessage)
|
|
|
|
|
async def on_stranger_message(event: StrangerMessage):
|
|
|
|
|
return await self.on_person_message(event)
|
|
|
|
|
|
|
|
|
|
@bot.on(GroupMessage)
|
|
|
|
|
async def on_group_message(event: GroupMessage):
|
|
|
|
|
return await self.on_group_message(event)
|
|
|
|
|
|
|
|
|
|
self.bot = bot
|
|
|
|
|
|
|
|
|
|
global inst
|
|
|
|
|
inst = self
|
|
|
|
|
|
|
|
|
|
# 统一的消息处理函数
|
|
|
|
|
@func_set_timeout(timeout)
|
|
|
|
|
def process_message(self, launcher_type: str, launcher_id: int, text_message: str) -> str:
|
|
|
|
|
reply = ''
|
|
|
|
|
session_name = "{}_{}".format(launcher_type, launcher_id)
|
|
|
|
|
|
2022-12-08 12:06:04 +08:00
|
|
|
|
if text_message.startswith('!') or text_message.startswith("!"): # 指令
|
2022-12-10 16:40:05 +08:00
|
|
|
|
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':
|
|
|
|
|
reply = "[bot]" + help_text
|
|
|
|
|
elif cmd == 'reset':
|
|
|
|
|
pkg.openai.session.get_session(session_name).reset(explicit=True)
|
|
|
|
|
reply = "[bot]会话已重置"
|
|
|
|
|
elif cmd == 'last':
|
|
|
|
|
result = pkg.openai.session.get_session(session_name).last_session()
|
|
|
|
|
if result is None:
|
|
|
|
|
reply = "[bot]没有前一次的对话"
|
2022-12-08 14:28:46 +08:00
|
|
|
|
else:
|
2022-12-10 16:40:05 +08:00
|
|
|
|
datetime_str = datetime.datetime.fromtimestamp(result.create_timestamp).strftime(
|
|
|
|
|
'%Y-%m-%d %H:%M:%S')
|
|
|
|
|
reply = "[bot]已切换到前一次的对话:\n创建时间:{}\n".format(datetime_str) + result.prompt[
|
|
|
|
|
:min(100,
|
|
|
|
|
len(result.prompt))] + \
|
|
|
|
|
("..." if len(result.prompt) > 100 else "#END#")
|
|
|
|
|
elif cmd == 'next':
|
|
|
|
|
result = pkg.openai.session.get_session(session_name).next_session()
|
|
|
|
|
if result is None:
|
|
|
|
|
reply = "[bot]没有后一次的对话"
|
|
|
|
|
else:
|
|
|
|
|
datetime_str = datetime.datetime.fromtimestamp(result.create_timestamp).strftime(
|
|
|
|
|
'%Y-%m-%d %H:%M:%S')
|
|
|
|
|
reply = "[bot]已切换到后一次的对话:\n创建时间:{}\n".format(datetime_str) + result.prompt[
|
|
|
|
|
:min(100,
|
|
|
|
|
len(result.prompt))] + \
|
|
|
|
|
("..." if len(result.prompt) > 100 else "#END#")
|
|
|
|
|
elif cmd == 'prompt':
|
|
|
|
|
reply = "[bot]当前对话所有内容:\n" + pkg.openai.session.get_session(session_name).prompt
|
|
|
|
|
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:
|
|
|
|
|
reply = "[bot]第{}页没有历史会话".format(page)
|
|
|
|
|
else:
|
|
|
|
|
reply = "[bot]历史会话 第{}页:\n".format(page)
|
|
|
|
|
current = -1
|
|
|
|
|
for i in range(len(results)):
|
|
|
|
|
# 时间(使用create_timestamp转换) 序号 部分内容
|
|
|
|
|
datetime_obj = datetime.datetime.fromtimestamp(results[i]['create_timestamp'])
|
|
|
|
|
reply += "#{} 创建:{} {}\n".format(i + page * 10,
|
|
|
|
|
datetime_obj.strftime("%Y-%m-%d %H:%M:%S"),
|
|
|
|
|
results[i]['prompt'][
|
|
|
|
|
:min(20, len(results[i]['prompt']))])
|
|
|
|
|
if results[i]['create_timestamp'] == pkg.openai.session.get_session(
|
|
|
|
|
session_name).create_timestamp:
|
|
|
|
|
current = i + page * 10
|
|
|
|
|
|
|
|
|
|
reply += "\n以上信息倒序排列"
|
|
|
|
|
if current != -1:
|
|
|
|
|
reply += ",当前会话是 #{}\n".format(current)
|
|
|
|
|
else:
|
|
|
|
|
reply += ",当前处于全新会话或不在此页"
|
|
|
|
|
except Exception as e:
|
|
|
|
|
self.notify_admin("{}指令执行失败:{}".format(session_name, e))
|
|
|
|
|
logging.exception(e)
|
|
|
|
|
reply = "[bot]err:{}".format(e)
|
2022-12-07 23:37:52 +08:00
|
|
|
|
else: # 消息
|
2022-12-10 16:40:05 +08:00
|
|
|
|
logging.info("[{}]发送消息:{}".format(session_name, text_message[:min(20, len(text_message))] + (
|
|
|
|
|
"..." if len(text_message) > 20 else "")))
|
2022-12-09 00:01:49 +08:00
|
|
|
|
|
2022-12-07 23:37:52 +08:00
|
|
|
|
session = pkg.openai.session.get_session(session_name)
|
2022-12-08 16:52:41 +08:00
|
|
|
|
try:
|
|
|
|
|
reply = "[GPT]" + session.append(text_message)
|
2022-12-10 16:40:05 +08:00
|
|
|
|
except openai.error.APIConnectionError as e:
|
|
|
|
|
self.notify_admin("{}会话调用API失败:{}".format(session_name, e))
|
|
|
|
|
reply = "[bot]err:调用API失败,请联系作者,或等待修复"
|
|
|
|
|
except openai.error.RateLimitError as e:
|
|
|
|
|
self.notify_admin("API调用额度超限,请向OpenAI账户充值或在config.py中更换api_key")
|
|
|
|
|
reply = "[bot]err:API调用额度超额,请联系作者,或等待修复"
|
2022-12-10 17:39:02 +08:00
|
|
|
|
except openai.error.InvalidRequestError as e:
|
|
|
|
|
self.notify_admin("{}API调用参数错误:{}\n\n这可能是由于config.py中的prompt_submit_length参数或"
|
|
|
|
|
"completion_api_params中的max_tokens参数数值过大导致的,请尝试将其降低".format(session_name, e))
|
|
|
|
|
reply = "[bot]err:API调用参数错误,请联系作者,或等待修复"
|
2022-12-08 16:52:41 +08:00
|
|
|
|
except Exception as e:
|
2022-12-09 00:01:49 +08:00
|
|
|
|
logging.exception(e)
|
2022-12-08 16:52:41 +08:00
|
|
|
|
reply = "[bot]err:{}".format(e)
|
2022-12-07 23:37:52 +08:00
|
|
|
|
|
2022-12-10 16:40:05 +08:00
|
|
|
|
logging.info(
|
|
|
|
|
"回复[{}]消息:{}".format(session_name, reply[:min(100, len(reply))] + ("..." if len(reply) > 100 else "")))
|
2022-12-09 00:01:49 +08:00
|
|
|
|
|
2022-12-07 23:37:52 +08:00
|
|
|
|
return reply
|
|
|
|
|
|
|
|
|
|
async def on_person_message(self, event: MessageEvent):
|
2022-12-08 21:58:02 +08:00
|
|
|
|
global processing
|
2022-12-07 23:37:52 +08:00
|
|
|
|
if "person_{}".format(event.sender.id) in processing:
|
2022-12-08 12:06:04 +08:00
|
|
|
|
return await self.bot.send(event, "err:正在处理中,请稍后再试")
|
2022-12-07 23:37:52 +08:00
|
|
|
|
|
|
|
|
|
reply = ''
|
|
|
|
|
|
|
|
|
|
if event.sender.id == self.bot.qq:
|
|
|
|
|
pass
|
|
|
|
|
else:
|
|
|
|
|
if Image in event.message_chain:
|
|
|
|
|
pass
|
|
|
|
|
else:
|
|
|
|
|
processing.append("person_{}".format(event.sender.id))
|
|
|
|
|
|
|
|
|
|
# 超时则重试,重试超过次数则放弃
|
|
|
|
|
failed = 0
|
|
|
|
|
for i in range(self.retry):
|
|
|
|
|
try:
|
|
|
|
|
reply = self.process_message('person', event.sender.id, str(event.message_chain))
|
|
|
|
|
break
|
|
|
|
|
except FunctionTimedOut:
|
|
|
|
|
failed += 1
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
if failed == self.retry:
|
2022-12-08 16:52:41 +08:00
|
|
|
|
reply = "[bot]err:请求超时"
|
2022-12-07 23:37:52 +08:00
|
|
|
|
|
|
|
|
|
processing.remove("person_{}".format(event.sender.id))
|
|
|
|
|
|
|
|
|
|
if reply != '':
|
|
|
|
|
return await self.bot.send(event, reply)
|
|
|
|
|
|
|
|
|
|
async def on_group_message(self, event: GroupMessage):
|
2022-12-08 21:58:02 +08:00
|
|
|
|
global processing
|
2022-12-07 23:37:52 +08:00
|
|
|
|
if "group_{}".format(event.group.id) in processing:
|
2022-12-08 12:06:04 +08:00
|
|
|
|
return await self.bot.send(event, "err:正在处理中,请稍后再试")
|
2022-12-07 23:37:52 +08:00
|
|
|
|
|
|
|
|
|
reply = ''
|
|
|
|
|
|
|
|
|
|
if Image in event.message_chain:
|
|
|
|
|
pass
|
|
|
|
|
elif At(self.bot.qq) not in event.message_chain:
|
|
|
|
|
pass
|
|
|
|
|
else:
|
2022-12-08 12:06:04 +08:00
|
|
|
|
event.message_chain.remove(At(self.bot.qq))
|
|
|
|
|
|
2022-12-07 23:37:52 +08:00
|
|
|
|
processing.append("group_{}".format(event.sender.id))
|
|
|
|
|
|
|
|
|
|
# 超时则重试,重试超过次数则放弃
|
|
|
|
|
failed = 0
|
|
|
|
|
for i in range(self.retry):
|
|
|
|
|
try:
|
2022-12-08 12:06:04 +08:00
|
|
|
|
reply = self.process_message('group', event.group.id, str(event.message_chain).strip())
|
2022-12-07 23:37:52 +08:00
|
|
|
|
break
|
|
|
|
|
except FunctionTimedOut:
|
|
|
|
|
failed += 1
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
if failed == self.retry:
|
|
|
|
|
reply = "err:请求超时"
|
|
|
|
|
|
|
|
|
|
processing.remove("group_{}".format(event.sender.id))
|
|
|
|
|
|
|
|
|
|
if reply != '':
|
|
|
|
|
return await self.bot.send(event, reply)
|
|
|
|
|
|
2022-12-10 16:40:05 +08:00
|
|
|
|
def notify_admin(self, message: str):
|
|
|
|
|
if config.admin_qq is not None and config.admin_qq != 0:
|
|
|
|
|
send_task = self.bot.send_friend_message(config.admin_qq, "[bot]{}".format(message))
|
|
|
|
|
threading.Thread(target=asyncio.run, args=(send_task,)).start()
|
|
|
|
|
|
2022-12-07 23:37:52 +08:00
|
|
|
|
|
|
|
|
|
def get_inst() -> QQBotManager:
|
|
|
|
|
global inst
|
|
|
|
|
return inst
|