Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -56,6 +56,7 @@ mic_translate = gr.Interface(
|
|
56 |
outputs=gr.Audio(label="Generated Speech", type="numpy"),
|
57 |
title=title,
|
58 |
description=description,
|
|
|
59 |
)
|
60 |
|
61 |
file_translate = gr.Interface(
|
@@ -65,6 +66,7 @@ file_translate = gr.Interface(
|
|
65 |
examples=[["./example.wav"]],
|
66 |
title=title,
|
67 |
description=description,
|
|
|
68 |
)
|
69 |
|
70 |
with demo:
|
|
|
56 |
outputs=gr.Audio(label="Generated Speech", type="numpy"),
|
57 |
title=title,
|
58 |
description=description,
|
59 |
+
cache_examples=False,
|
60 |
)
|
61 |
|
62 |
file_translate = gr.Interface(
|
|
|
66 |
examples=[["./example.wav"]],
|
67 |
title=title,
|
68 |
description=description,
|
69 |
+
cache_examples=False,
|
70 |
)
|
71 |
|
72 |
with demo:
|