chansung commited on
Commit
681c717
ยท
1 Parent(s): 9b99456

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -6
app.py CHANGED
@@ -235,17 +235,22 @@ with gr.Blocks() as demo2:
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
  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)