ayymen commited on
Commit
bba4bf9
1 Parent(s): b35a9f7

Fix dropdown default value.

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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()), default="Tachelhit")
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,