From fdd29bd60962e7a3521b064aa370298764febd44 Mon Sep 17 00:00:00 2001 From: Kyomotoi Date: Sun, 12 Dec 2021 08:56:39 +0800 Subject: =?UTF-8?q?=F0=9F=94=A5=20=E5=9B=9E=E6=BB=9A=E8=87=B3commit:`b19cf?= =?UTF-8?q?7768a70cf639853d9d33a6ab2a3d56e7045`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ATRI/plugins/chatbot/__init__.py | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 ATRI/plugins/chatbot/__init__.py (limited to 'ATRI/plugins/chatbot/__init__.py') diff --git a/ATRI/plugins/chatbot/__init__.py b/ATRI/plugins/chatbot/__init__.py deleted file mode 100644 index e9061cc..0000000 --- a/ATRI/plugins/chatbot/__init__.py +++ /dev/null @@ -1,33 +0,0 @@ -import random -from ATRI.config import ChatterBot -from ATRI.plugins.atri_chat_bot import ATRIChatBot -from nonebot import on_message -from nonebot import on_command -from nonebot.adapters.cqhttp import ( - Bot, - GroupMessageEvent, - MessageEvent, -) -from nonebot.permission import SUPERUSER - -chatbot = on_message(priority=114514) - - -@chatbot.handle() -async def _learn_from_group(bot: Bot, event: MessageEvent): - text = event.get_plaintext().strip() - if not text: - return - if isinstance(event, GroupMessageEvent): # 从群友那学习说话 - ATRIChatBot.learn(event.get_session_id(), text) - if random.random() <= ChatterBot.group_random_response_rate: # 随机回话 - await chatbot.finish(await ATRIChatBot.get_response(text)) - - -chatbot_learn = on_command("/learn_corpus", permission=SUPERUSER) - - -@chatbot_learn.handle() -async def _learn_from_corpus(bot: Bot, event: MessageEvent): - ATRIChatBot.learn_from_corpus() - await chatbot.finish("咱从corpus那学习完了!") -- cgit v1.2.3