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.
|
- """
- channel factory
- """
- from common import const
-
-
- def create_bot(bot_type):
- """
- create a channel instance
- :param channel_type: channel type code
- :return: channel instance
- """
- if bot_type == const.BAIDU:
- # Baidu Unit对话接口
- from bot.baidu.baidu_unit_bot import BaiduUnitBot
- return BaiduUnitBot()
-
- elif bot_type == const.CHATGPT:
- # ChatGPT 网页端web接口
- from bot.chatgpt.chat_gpt_bot import ChatGPTBot
- return ChatGPTBot()
-
- elif bot_type == const.OPEN_AI:
- # OpenAI 官方对话模型API
- from bot.openai.open_ai_bot import OpenAIBot
- return OpenAIBot()
- raise RuntimeError
|