Spaces:
Running
Running
Fix dropdown default value.
Browse files
app.py
CHANGED
@@ -56,7 +56,7 @@ iface = gr.Interface(
|
|
56 |
label="Text",
|
57 |
default="Text to synthesize.",
|
58 |
),
|
59 |
-
gr.Dropdown(label="Variant", choices=list(ISO_CODES.keys()),
|
60 |
],
|
61 |
outputs=gr.Audio(label="Output", type="numpy"),
|
62 |
examples=examples,
|
|
|
56 |
label="Text",
|
57 |
default="Text to synthesize.",
|
58 |
),
|
59 |
+
gr.Dropdown(label="Variant", choices=list(ISO_CODES.keys()), value="Tachelhit")
|
60 |
],
|
61 |
outputs=gr.Audio(label="Output", type="numpy"),
|
62 |
examples=examples,
|