Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

2 лет назад
1 год назад
1 год назад
12345678910111213141516
  1. from bot import bot_factory
  2. from voice import voice_factory
  3. class Bridge(object):
  4. def __init__(self):
  5. pass
  6. def fetch_reply_content(self, query, context):
  7. return bot_factory.create_bot("chatGPT").reply(query, context)
  8. def fetch_voice_to_text(self, voiceFile):
  9. return voice_factory.create_voice("openai").voiceToText(voiceFile)
  10. def fetch_text_to_voice(self, text):
  11. return voice_factory.create_voice("baidu").textToVoice(text)