Forgot comma
Browse files
app.py
CHANGED
@@ -63,7 +63,7 @@ mic_translate = gr.Interface(
|
|
63 |
outputs=[
|
64 |
gr.Audio(label="Generated Speech", type="numpy"),
|
65 |
gr.Text(label="Translation")
|
66 |
-
]
|
67 |
title=title,
|
68 |
description=description,
|
69 |
)
|
@@ -74,7 +74,7 @@ file_translate = gr.Interface(
|
|
74 |
outputs=[
|
75 |
gr.Audio(label="Generated Speech", type="numpy"),
|
76 |
gr.Text(label="Translation")
|
77 |
-
]
|
78 |
examples=[["./example.wav"]],
|
79 |
title=title,
|
80 |
description=description,
|
|
|
63 |
outputs=[
|
64 |
gr.Audio(label="Generated Speech", type="numpy"),
|
65 |
gr.Text(label="Translation")
|
66 |
+
],
|
67 |
title=title,
|
68 |
description=description,
|
69 |
)
|
|
|
74 |
outputs=[
|
75 |
gr.Audio(label="Generated Speech", type="numpy"),
|
76 |
gr.Text(label="Translation")
|
77 |
+
],
|
78 |
examples=[["./example.wav"]],
|
79 |
title=title,
|
80 |
description=description,
|