Pad / bot /bot.py
AtomdffAI's picture
Duplicate from lewisliuX123/wechatgpt3
78d94c0
raw
history blame contribute delete
266 Bytes
"""
Auto-replay chat robot abstract class
"""
class Bot(object):
def reply(self, query, context=None):
"""
bot auto-reply content
:param req: received message
:return: reply content
"""
raise NotImplementedError