Spaces:
Runtime error
Runtime error
Added default value for radio button
Browse files
app.py
CHANGED
@@ -51,7 +51,7 @@ with demo:
|
|
51 |
gr.Markdown("## Subtitle")
|
52 |
with gr.Row():
|
53 |
with gr.Column():
|
54 |
-
similar_radio = gr.Radio(choices=["Similar", "Dissimilar"])
|
55 |
n_output = gr.Slider(minimum=5, maximum=50, step=1)
|
56 |
gr.Markdown(
|
57 |
"""### Example prompts:
|
|
|
51 |
gr.Markdown("## Subtitle")
|
52 |
with gr.Row():
|
53 |
with gr.Column():
|
54 |
+
similar_radio = gr.Radio(value="Similar", choices=["Similar", "Dissimilar"])
|
55 |
n_output = gr.Slider(minimum=5, maximum=50, step=1)
|
56 |
gr.Markdown(
|
57 |
"""### Example prompts:
|