Du kannst nicht mehr als 25 Themen auswählen
Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
|
- """
- 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
|