linhj07's picture
Duplicate from Nightfall7/wechat-chatbot
f556f4d
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