Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -74,7 +74,14 @@ with gr.Blocks(css=css) as demo:
|
|
74 |
run_button = gr.Button("Run", scale=0)
|
75 |
|
76 |
result = gr.Image(label="Result", show_label=False)
|
77 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
78 |
with gr.Accordion("Advanced Settings", open=False):
|
79 |
|
80 |
seed = gr.Slider(
|
|
|
74 |
run_button = gr.Button("Run", scale=0)
|
75 |
|
76 |
result = gr.Image(label="Result", show_label=False)
|
77 |
+
|
78 |
+
with gr.Row():
|
79 |
+
radio_buttons = gr.Radio(
|
80 |
+
choices=["Kaatz", "Mupp", "Hues", "Hamster"],
|
81 |
+
label="Select an option",
|
82 |
+
value="Kaatz"
|
83 |
+
)
|
84 |
+
|
85 |
with gr.Accordion("Advanced Settings", open=False):
|
86 |
|
87 |
seed = gr.Slider(
|