Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -235,6 +235,13 @@ with gr.Blocks() as demo2:
|
|
235 |
interactive=True,
|
236 |
)
|
237 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
238 |
submit_button = gr.Button(
|
239 |
value="Submit",
|
240 |
)
|
|
|
235 |
interactive=True,
|
236 |
)
|
237 |
|
238 |
+
security_selector = gr.Radio(
|
239 |
+
choices=["Protected", "Public", "Private"],
|
240 |
+
value="Public",
|
241 |
+
label="select security level",
|
242 |
+
interactive=True,
|
243 |
+
)
|
244 |
+
|
245 |
submit_button = gr.Button(
|
246 |
value="Submit",
|
247 |
)
|