From 288de059687aeee0c2efae85803fec4ccf5173fa Mon Sep 17 00:00:00 2001 From: Lint Action Date: Sat, 11 Dec 2021 15:10:30 +0000 Subject: =?UTF-8?q?:rotating=5Flight:=20=E8=87=AA=E5=8A=A8=E8=BF=9B?= =?UTF-8?q?=E8=A1=8C=E4=BB=A3=E7=A0=81=E6=A0=BC=E5=BC=8F=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ATRI/plugins/atri_chat_bot.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'ATRI/plugins/atri_chat_bot.py') diff --git a/ATRI/plugins/atri_chat_bot.py b/ATRI/plugins/atri_chat_bot.py index 9000006..3226b2f 100644 --- a/ATRI/plugins/atri_chat_bot.py +++ b/ATRI/plugins/atri_chat_bot.py @@ -12,19 +12,22 @@ https://chatterbot.readthedocs.io/ MONGO_ADAPTER = "chatterbot.storage.MongoDatabaseAdapter" SQLITE_ADAPTER = "chatterbot.storage.SQLStorageAdapter" + class ATRIChatBot: bot = ChatBot( "ATRI", - storage_adapter=MONGO_ADAPTER if ChatterBot.mongo_database_uri else SQLITE_ADAPTER, + storage_adapter=MONGO_ADAPTER + if ChatterBot.mongo_database_uri + else SQLITE_ADAPTER, logic_adapters=[ { - 'import_path': 'chatterbot.logic.BestMatch', - 'default_response': ChatterBot.default_response, - 'maximum_similarity_threshold': ChatterBot.maximum_similarity_threshold + "import_path": "chatterbot.logic.BestMatch", + "default_response": ChatterBot.default_response, + "maximum_similarity_threshold": ChatterBot.maximum_similarity_threshold, } ], database_uri=ChatterBot.mongo_database_uri, - read_only=True # 只能通过 learn 函数学习 + read_only=True, # 只能通过 learn 函数学习 ) list_trainer = ListTrainer(bot) session_text_dict = dict() @@ -41,10 +44,7 @@ class ATRIChatBot: # 查找上一条消息并训练模型 last_text = ATRIChatBot.session_text_dict.get(session_id) if last_text: - ATRIChatBot.list_trainer.train([ - last_text, # 问(可多个) - text # 答 - ]) + ATRIChatBot.list_trainer.train([last_text, text]) # 问(可多个) # 答 # 更新最后一条消息 ATRIChatBot.session_text_dict[session_id] = text @@ -52,4 +52,4 @@ class ATRIChatBot: async def get_response(text: str) -> str: response = ATRIChatBot.bot.get_response(text) log.info(f"人工智障回复:{text} -> {response.text}") - return response.text \ No newline at end of file + return response.text -- cgit v1.2.3