fabiolamp commited on
Commit
bc51d3c
·
verified ·
1 Parent(s): 0b64d45

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -147,7 +147,7 @@ def run():
147
  video_out = gr.Video(label="🎥 Your video", show_label=True)
148
 
149
 
150
- btn.click(fn=run_inference, inputs=[input_image, input_audio, input_text], outputs=video_out)
151
  demo.queue()
152
  demo.launch(server_name="0.0.0.0", server_port=7860)
153
 
 
147
  video_out = gr.Video(label="🎥 Your video", show_label=True)
148
 
149
 
150
+ btn.click(run_inference, inputs=[input_image, input_audio, input_text], outputs=video_out)
151
  demo.queue()
152
  demo.launch(server_name="0.0.0.0", server_port=7860)
153