Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

97 lines
3.8KB

  1. from bot.bot_factory import create_bot
  2. from bridge.context import Context
  3. from bridge.reply import Reply
  4. from common import const
  5. from common.log import logger
  6. from common.singleton import singleton
  7. from config import conf
  8. from translate.factory import create_translator
  9. from voice.factory import create_voice
  10. @singleton
  11. class Bridge(object):
  12. def __init__(self):
  13. self.btype = {
  14. "chat": const.CHATGPT,
  15. "voice_to_text": conf().get("voice_to_text", "openai"),
  16. "text_to_voice": conf().get("text_to_voice", "google"),
  17. "translate": conf().get("translate", "baidu"),
  18. }
  19. # 这边取配置的模型
  20. model_type = conf().get("model") or const.GPT35
  21. if model_type in ["text-davinci-003"]:
  22. self.btype["chat"] = const.OPEN_AI
  23. if conf().get("use_azure_chatgpt", False):
  24. self.btype["chat"] = const.CHATGPTONAZURE
  25. if model_type in ["wenxin", "wenxin-4"]:
  26. self.btype["chat"] = const.BAIDU
  27. if model_type in ["xunfei"]:
  28. self.btype["chat"] = const.XUNFEI
  29. if model_type in [const.QWEN]:
  30. self.btype["chat"] = const.QWEN
  31. if model_type in [const.QWEN_TURBO, const.QWEN_PLUS, const.QWEN_MAX]:
  32. self.btype["chat"] = const.QWEN_DASHSCOPE
  33. if model_type in [const.GEMINI]:
  34. self.btype["chat"] = const.GEMINI
  35. if model_type in [const.ZHIPU_AI]:
  36. self.btype["chat"] = const.ZHIPU_AI
  37. if model_type and model_type.startswith("claude-3"):
  38. self.btype["chat"] = const.CLAUDEAPI
  39. if model_type in ["claude"]:
  40. self.btype["chat"] = const.CLAUDEAI
  41. if model_type in ["moonshot-v1-8k", "moonshot-v1-32k", "moonshot-v1-128k"]:
  42. self.btype["chat"] = const.MOONSHOT
  43. if conf().get("use_linkai") and conf().get("linkai_api_key"):
  44. self.btype["chat"] = const.LINKAI
  45. if not conf().get("voice_to_text") or conf().get("voice_to_text") in ["openai"]:
  46. self.btype["voice_to_text"] = const.LINKAI
  47. if not conf().get("text_to_voice") or conf().get("text_to_voice") in ["openai", const.TTS_1, const.TTS_1_HD]:
  48. self.btype["text_to_voice"] = const.LINKAI
  49. self.bots = {}
  50. self.chat_bots = {}
  51. # 模型对应的接口
  52. def get_bot(self, typename):
  53. if self.bots.get(typename) is None:
  54. logger.info("create bot {} for {}".format(self.btype[typename], typename))
  55. if typename == "text_to_voice":
  56. self.bots[typename] = create_voice(self.btype[typename])
  57. elif typename == "voice_to_text":
  58. self.bots[typename] = create_voice(self.btype[typename])
  59. elif typename == "chat":
  60. self.bots[typename] = create_bot(self.btype[typename])
  61. elif typename == "translate":
  62. self.bots[typename] = create_translator(self.btype[typename])
  63. return self.bots[typename]
  64. def get_bot_type(self, typename):
  65. return self.btype[typename]
  66. def fetch_reply_content(self, query, context: Context) -> Reply:
  67. return self.get_bot("chat").reply(query, context)
  68. def fetch_voice_to_text(self, voiceFile) -> Reply:
  69. return self.get_bot("voice_to_text").voiceToText(voiceFile)
  70. def fetch_text_to_voice(self, text) -> Reply:
  71. return self.get_bot("text_to_voice").textToVoice(text)
  72. def fetch_translate(self, text, from_lang="", to_lang="en") -> Reply:
  73. return self.get_bot("translate").translate(text, from_lang, to_lang)
  74. def find_chat_bot(self, bot_type: str):
  75. if self.chat_bots.get(bot_type) is None:
  76. self.chat_bots[bot_type] = create_bot(bot_type)
  77. return self.chat_bots.get(bot_type)
  78. def reset_bot(self):
  79. """
  80. 重置bot路由
  81. """
  82. self.__init__()