Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

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