ECUiVADE commited on
Commit
d3f492e
·
verified ·
1 Parent(s): 4e1dd84

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -253,8 +253,8 @@ with gr.Blocks() as app:
253
  gender = gr.Dropdown(choices=["Male", "Female", "Other", "Prefer Not To Say"], label="Gender")
254
  age = gr.Textbox(label="Age")
255
  submit_info = gr.Button("Submit")
256
- status = gr.Textbox(label="Status" ,container = True, scale = 2 ,interactive = False, show_copy_button = True),
257
- submit_info.click(submit_user_info, inputs=[name, occupation, yearsofexp, ethnicity, gender, age], outputs=status)
258
 
259
  with gr.Tab("Chat Bot"):
260
  chatbot = gr.Chatbot()
 
253
  gender = gr.Dropdown(choices=["Male", "Female", "Other", "Prefer Not To Say"], label="Gender")
254
  age = gr.Textbox(label="Age")
255
  submit_info = gr.Button("Submit")
256
+ status_textbot = gr.Textbox(label="Status", scale = 2 ,interactive = False),
257
+ submit_info.click(submit_user_info, inputs=[name, occupation, yearsofexp, ethnicity, gender, age], outputs=status_textbot)
258
 
259
  with gr.Tab("Chat Bot"):
260
  chatbot = gr.Chatbot()