motherearthly commited on
Commit
603899d
·
verified ·
1 Parent(s): 93d1ea0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -53,7 +53,7 @@ audio_output = [gr.Audio(label=f"Voice {i+1}") for i in range(6)]
53
  iface = gr.Interface(
54
  fn=debate_interface,
55
  inputs=gr.Textbox(label="Enter Debate Question"),
56
- outputs=[text_output, audio_output],
57
  title="AI Persona Debate"
58
  )
59
 
 
53
  iface = gr.Interface(
54
  fn=debate_interface,
55
  inputs=gr.Textbox(label="Enter Debate Question"),
56
+ outputs=text_output + audio_output,
57
  title="AI Persona Debate"
58
  )
59