Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -4,6 +4,6 @@ def clone(text, audio):
|
|
4 |
return audio
|
5 |
|
6 |
iface = gr.Interface(fn=clone,
|
7 |
-
inputs=["text",
|
8 |
-
outputs=
|
9 |
iface.launch()
|
|
|
4 |
return audio
|
5 |
|
6 |
iface = gr.Interface(fn=clone,
|
7 |
+
inputs=["text",gr.Audio(type='filepath')],
|
8 |
+
outputs=gr.Audio(type='filepath'))
|
9 |
iface.launch()
|