Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -235,17 +235,22 @@ with gr.Blocks() as demo2:
|
|
235 |
interactive=True,
|
236 |
)
|
237 |
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
|
245 |
submit_button = gr.Button(
|
246 |
value="Submit",
|
247 |
)
|
248 |
|
|
|
|
|
|
|
|
|
|
|
249 |
gr.TabbedInterface(
|
250 |
[demoInterface, demo, demo2], ["Try-out", "๐ Deploy on GCP", " Deploy on ๐ค Endpoint"]
|
251 |
).launch(enable_queue=True)
|
|
|
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 |
)
|
248 |
|
249 |
+
status_txt = gr.Textbox(
|
250 |
+
value="any status update will be displayed here"
|
251 |
+
interactive=False
|
252 |
+
)
|
253 |
+
|
254 |
gr.TabbedInterface(
|
255 |
[demoInterface, demo, demo2], ["Try-out", "๐ Deploy on GCP", " Deploy on ๐ค Endpoint"]
|
256 |
).launch(enable_queue=True)
|