Spaces:
Running on Zero
Running on Zero
Vansh Chugh commited on
Commit ·
e06e0e7
1
Parent(s): 5d772b3
fix: replace unsupported gr.Radio with gr.Dropdown
Browse files
app.py
CHANGED
|
@@ -181,7 +181,7 @@ with gr.Blocks() as demo:
|
|
| 181 |
type="filepath",
|
| 182 |
label="Context Track",
|
| 183 |
).harp_required(True),
|
| 184 |
-
gr.
|
| 185 |
choices=["Drums", "Bass"],
|
| 186 |
value="Drums",
|
| 187 |
label="Instrument",
|
|
|
|
| 181 |
type="filepath",
|
| 182 |
label="Context Track",
|
| 183 |
).harp_required(True),
|
| 184 |
+
gr.Dropdown(
|
| 185 |
choices=["Drums", "Bass"],
|
| 186 |
value="Drums",
|
| 187 |
label="Instrument",
|