mirror of
https://github.com/zhayujie/bot-on-anything.git
synced 2026-01-19 01:21:06 +08:00
14 lines
270 B
Python
14 lines
270 B
Python
"""
|
|
Auto-replay chat robot abstract class
|
|
"""
|
|
|
|
|
|
class Model(object):
|
|
def reply(self, query, context=None):
|
|
"""
|
|
model auto-reply content
|
|
:param req: received message
|
|
:return: reply content
|
|
"""
|
|
raise NotImplementedError
|