Blane187 commited on
Commit
0c95b2e
1 Parent(s): 5468b2f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -28,7 +28,7 @@ with gr.Blocks(title="RVC UI") as app:
28
  gr.Markdown("<h1>this ui not done yet!")
29
  with gr.TabItem("inference"):
30
  with gr.Tabs():
31
- models = gr.Dropdown(label="voice model", choices=sorted(names))
32
  with gr.Row():
33
  clean_button = gr.Button("Refresh model", variant="primary")
34
  with gr.Row():
 
28
  gr.Markdown("<h1>this ui not done yet!")
29
  with gr.TabItem("inference"):
30
  with gr.Tabs():
31
+ models = gr.Dropdown(label="Model Voice", choices=sorted(names), value=lambda:sorted(names)[0] if len(sorted(names)) > 0 else '', interactive=True)
32
  with gr.Row():
33
  clean_button = gr.Button("Refresh model", variant="primary")
34
  with gr.Row():