您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213
  1. """
  2. Auto-replay chat robot abstract class
  3. """
  4. class Bot(object):
  5. def reply(self, query, context=None):
  6. """
  7. bot auto-reply content
  8. :param req: received message
  9. :return: reply content
  10. """
  11. raise NotImplementedError