Spaces:
Runtime error
Runtime error
osanseviero
commited on
Commit
•
97ab429
1
Parent(s):
ab0ce7b
Update app.py
Browse files
app.py
CHANGED
@@ -119,5 +119,12 @@ with gr.Blocks() as demo:
|
|
119 |
out = gr.Textbox()
|
120 |
btn = gr.Button("Run")
|
121 |
btn.click(fn=audio_tag, inputs=[aud, inp], outputs=out)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
122 |
|
123 |
demo.launch()
|
|
|
119 |
out = gr.Textbox()
|
120 |
btn = gr.Button("Run")
|
121 |
btn.click(fn=audio_tag, inputs=[aud, inp], outputs=out)
|
122 |
+
gr.Examples(
|
123 |
+
[["metro_station-paris.wav", "Hello. What are you?"]],
|
124 |
+
[aud, inp],
|
125 |
+
out,
|
126 |
+
audio_tag,
|
127 |
+
cache_examples=True,
|
128 |
+
)
|
129 |
|
130 |
demo.launch()
|