Update app.py
Browse files
app.py
CHANGED
@@ -15,7 +15,7 @@ def infer(audio):
|
|
15 |
return audio_response, portrait
|
16 |
|
17 |
inputs = gr.Audio(source="microphone",type="filepath")
|
18 |
-
outputs = [gr.Audio(), gr.Video(
|
19 |
|
20 |
demo = gr.Interface(fn=infer, inputs=inputs, outputs=outputs)
|
21 |
demo.launch()
|
|
|
15 |
return audio_response, portrait
|
16 |
|
17 |
inputs = gr.Audio(source="microphone",type="filepath")
|
18 |
+
outputs = [gr.Audio(), gr.Video()]
|
19 |
|
20 |
demo = gr.Interface(fn=infer, inputs=inputs, outputs=outputs)
|
21 |
demo.launch()
|