Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- """
- channel factory
- """
-
- from bot.baidu.baidu_unit_bot import BaiduUnitBot
- from bot.chatgpt.chat_gpt_bot import ChatGPTBot
-
-
- def create_bot(bot_type):
- """
- create a channel instance
- :param channel_type: channel type code
- :return: channel instance
- """
- if bot_type == 'baidu':
- return BaiduUnitBot()
- elif bot_type == 'chatGPT':
- return ChatGPTBot()
- raise RuntimeError
|