rafaa commited on
Commit
7d4323e
·
verified ·
1 Parent(s): dc62751

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -149,6 +149,7 @@ def generate_text(
149
 
150
  if password == ttsPassword:
151
  print("Using TTS!")
 
152
  lastAudio = generate_voice(output, voice_id_before, elevenlabs_api_key)
153
  # Create a tuple message with the output and the audio output
154
  elif password != ttsPassword and password != '':
@@ -156,7 +157,7 @@ def generate_text(
156
  else:
157
  print("Not using TTS!")
158
 
159
- return output, lastAudio
160
 
161
 
162
 
@@ -172,7 +173,7 @@ with gr.ChatInterface(
172
  undo_btn=None,
173
  additional_inputs=[passwordInput],
174
  ) as chat:
175
- audioBlock = gr.Audio(value=lambda: chat.outputs[-1][1], autoplay=True, interactive=False)
176
 
177
 
178
  chat.launch(show_api=False)
 
149
 
150
  if password == ttsPassword:
151
  print("Using TTS!")
152
+ global lastAudio
153
  lastAudio = generate_voice(output, voice_id_before, elevenlabs_api_key)
154
  # Create a tuple message with the output and the audio output
155
  elif password != ttsPassword and password != '':
 
157
  else:
158
  print("Not using TTS!")
159
 
160
+ return output
161
 
162
 
163
 
 
173
  undo_btn=None,
174
  additional_inputs=[passwordInput],
175
  ) as chat:
176
+ audioBlock = gr.Audio(value=lastAudio, autoplay=True, interactive=False)
177
 
178
 
179
  chat.launch(show_api=False)