Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

20 lines
411B

  1. """
  2. channel factory
  3. """
  4. from bot.baidu.baidu_unit_bot import BaiduUnitBot
  5. from bot.chatgpt.chat_gpt_bot import ChatGPTBot
  6. def create_bot(bot_type):
  7. """
  8. create a channel instance
  9. :param channel_type: channel type code
  10. :return: channel instance
  11. """
  12. if bot_type == 'baidu':
  13. return BaiduUnitBot()
  14. elif bot_type == 'chatGPT':
  15. return ChatGPTBot()
  16. raise RuntimeError