選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

bot.py 266B

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