Archived
1
0
Fork 0
This repository has been archived on 2024-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
akari-bot/modules/summary/__init__.py

93 lines
3.6 KiB
Python
Raw Normal View History

2023-03-18 09:06:45 +00:00
import openai
2023-11-05 17:11:01 +00:00
import re
2023-03-18 09:06:45 +00:00
2023-04-19 07:45:29 +00:00
from config import Config
2023-11-05 17:17:08 +00:00
from core.builtins import Bot
2023-03-04 08:51:56 +00:00
from core.component import module
2023-07-14 07:59:01 +00:00
from core.dirty_check import check_bool, rickroll
2023-02-07 05:27:25 +00:00
from core.logger import Logger
2023-11-05 17:11:01 +00:00
from core.petal import count_petal
from core.utils.cooldown import CoolDown
2023-03-18 09:06:45 +00:00
openai.api_key = Config('openai_api_key')
2023-02-07 01:35:05 +00:00
2023-11-05 08:41:30 +00:00
s = module('summary',
developers=['Dianliang233', 'OasisAkari'],
2023-04-30 03:30:59 +00:00
desc='{summary.help.desc}',
2023-11-05 08:41:30 +00:00
available_for=['QQ', 'QQ|Group'])
2023-02-07 01:35:05 +00:00
2023-04-05 02:22:37 +00:00
@s.handle('{{summary.help}}')
2023-02-07 01:35:05 +00:00
async def _(msg: Bot.MessageSession):
2023-11-05 17:11:01 +00:00
is_superuser = msg.check_super_user()
if not Config('openai_api_key'):
2023-11-09 05:26:15 +00:00
raise ConfigError(msg.locale.t('error.config.secret.not_found'))
2023-11-05 17:11:01 +00:00
if not is_superuser and msg.data.petal <= 0: # refuse
await msg.finish(msg.locale.t('core.message.petal.no_petals') + Config('issue_url'))
qc = CoolDown('call_openai', msg)
c = qc.check(60)
if c == 0 or msg.target.target_from == 'TEST|Console' or is_superuser:
f_msg = await msg.wait_next_message(msg.locale.t('summary.message'), append_instruction=False)
try:
f = re.search(r'\[Ke:forward,id=(.*?)\]', f_msg.as_display()).group(1)
except AttributeError:
await msg.finish(msg.locale.t('summary.message.not_found'))
Logger.info(f)
data = await f_msg.call_api('get_forward_msg', message_id=f)
msgs = data['messages']
texts = [f'\n{m["sender"]["nickname"]}{m["content"]}' for m in msgs]
if await check_bool(''.join(texts)):
rickroll(msg)
char_count = sum([len(i) for i in texts])
wait_msg = await msg.send_message(
msg.locale.t('summary.message.waiting', count=char_count, time=round(char_count / 33.5, 1)))
nth = 0
prev = ''
while nth < len(texts):
prompt = f'请总结下列聊天内容。要求语言简练,但必须含有所有要点,以一段话的形式输出。请使用{msg.locale.locale}输出结果。除了聊天记录的摘要以外,不要输出其他任何内容。' \
2023-11-06 13:27:45 +00:00
f'''{f"""同时<ctx_start>与<|ctx_end|>之间记录了聊天内容的上下文,请你同时结合这段上下文和聊天记录来输出。
2023-11-05 17:11:01 +00:00
<|ctx_start|>{prev}<|ctx_end|>""" if nth != 0 else ""}'''
len_prompt = len(prompt)
post_texts = ''
for t in texts[nth:]:
if len(post_texts) + len_prompt < 1970:
post_texts += texts[nth]
nth += 1
else:
break
completion = openai.ChatCompletion.create(
model='gpt-3.5-turbo',
messages=[
{'role': 'system', "content": "You are a helpful assistants who summarizes chat logs."},
{'role': 'user', "content": f'''{prompt}
2023-11-05 08:41:30 +00:00
2023-11-05 17:11:01 +00:00
{post_texts}'''},
]
)
output = completion['choices'][0]['message']['content']
tokens = completion['usage']['total_tokens']
if not is_superuser:
petal = await count_petal(tokens)
msg.data.modify_petal(-petal)
else:
petal = 0
2023-11-05 17:11:01 +00:00
if petal != 0:
2023-11-06 07:20:58 +00:00
output = f"{output}\n{msg.locale.t('petal.message.cost', count=petal)}"
2023-11-05 17:11:01 +00:00
await wait_msg.delete()
if await check_bool(output):
2023-11-06 07:39:38 +00:00
if petal != 0:
2023-11-10 13:49:49 +00:00
await msg.send_message(msg.locale.t('petal.message.cost', count=petal))
2023-11-05 17:11:01 +00:00
rickroll(msg)
if msg.target.target_from != 'TEST|Console' and not is_superuser:
qc.reset()
2023-11-05 17:23:47 +00:00
await msg.finish(output, disable_secret_check=True)
2023-11-05 17:11:01 +00:00
else:
await msg.finish(msg.locale.t('message.cooldown', time=int(c), cd_time='60'))
2023-03-31 07:38:41 +00:00
2023-03-18 09:06:45 +00:00