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

123456789101112131415161718192021222324252627
  1. """
  2. google voice service
  3. """
  4. import json
  5. import openai
  6. from config import conf
  7. from common.log import logger
  8. from voice.voice import Voice
  9. class OpenaiVoice(Voice):
  10. def __init__(self):
  11. openai.api_key = conf().get('open_ai_api_key')
  12. def voiceToText(self, voice_file):
  13. logger.debug(
  14. '[Openai] voice file name={}'.format(voice_file))
  15. file = open(voice_file, "rb")
  16. reply = openai.Audio.transcribe("whisper-1", file)
  17. text = reply["text"]
  18. logger.info(
  19. '[Openai] voiceToText text={} voice file name={}'.format(text, voice_file))
  20. return text
  21. def textToVoice(self, text):
  22. pass