No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

16 líneas
476B

  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)