File size: 2,493 Bytes
3f492a3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import os
import gradio as gr
import whisper
import openai
import tempfile
from neon_tts_plugin_coqui import CoquiTTS

model = whisper.load_model("small")

class Dost:
  LANGUAGES = list(CoquiTTS.langs.keys())
  coquiTTS = CoquiTTS()
  openai.api_key = "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"
  def __init__(self):
    self.convHistory = []
    self.voice = None
    self.result = []

  def recognize(self, audio):
    audio = whisper.load_audio(audio)
    audio = whisper.pad_or_trim(audio)

    mel = whisper.log_mel_spectrogram(audio).to(model.device)
    
    _, probs = model.detect_language(mel)
    lang = max(probs, key=probs.get)

    options = whisper.DecodingOptions(fp16 = False)
    result = whisper.decode(model, mel, options)

    print("-------------------RECOGNIZE---------------------")
    print(self.result)
    self.response(result.text, lang)
  
  def response(self, prompt, lang):
    response = openai.Completion.create(
      model="text-davinci-002",
      prompt=f"You: {prompt}Friend: ",
      temperature=0.5,
      max_tokens=60,
      top_p=1.0,
      frequency_penalty=0.5,
      presence_penalty=0.0,
      stop=["You:"]
    )
    choice = response['choices'][0]['text']
    print("-------------------RESPONSE---------------------")
    print(self.result)
    self.convHistory.append((prompt, choice))
    self.result.append(self.convHistory)
    print(self.convHistory[0])
    print(type(self.convHistory[0]))
    self.say(choice, lang)

  def say(self, text, language):
    coqui_langs = ['en' ,'es' ,'fr' ,'de' ,'pl' ,'uk' ,'ro' ,'hu' ,'bg' ,'nl' ,'fi' ,'sl' ,'lv' ,'ga']
    if language not in coqui_langs:
      language = 'en'
    with tempfile.NamedTemporaryFile(suffix=".wav", delete=False) as fp:
        self.coquiTTS.get_tts(text, fp, speaker = {"language" : language})
        print("-------------------AUDIOOUTPUT---------------------")
        print(self.result)
        self.result.append(fp.name)

  def start(self, audio):
    self.result = []
    self.recognize(audio)
    print(self.result)
    return tuple(self.result)
    
dost = Dost()
with gr.Blocks() as demo:
  with gr.Row():
    with gr.Column():
      input_audio = gr.Audio(source="microphone", type="filepath")
      btn = gr.Button("Submit")
      conversation = gr.Chatbot(value=dost.convHistory)
      output_audio = gr.Audio(label="AI voice response")
    btn.click(dost.start, inputs=[input_audio], outputs=[conversation, output_audio])

demo.launch(debug=True)