Update app.py
Browse files
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="
|
| 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():
|