Update app.py
Browse files
app.py
CHANGED
@@ -279,13 +279,11 @@ with gr.Blocks() as app:
|
|
279 |
""")
|
280 |
agree_status = gr.Checkbox(label="I have read and understand the terms and conditions.")
|
281 |
start_chat_button = gr.Button("Start Chat with Chatlog")
|
282 |
-
|
283 |
-
|
284 |
print(agree_status)
|
285 |
#submit_info.click(submit_user_info, inputs=[name, occupation, yearsofexp, ethnicity, gender, age], outputs=[status_textbox])
|
286 |
status_label = gr.Markdown()
|
287 |
start_chat_button.click(start_chat_button_fn, inputs=[agree_status], outputs=[status_label])
|
288 |
-
status_textbox = gr.Textbox(interactive = False)
|
289 |
|
290 |
|
291 |
with gr.Tab("Chat Bot"):
|
|
|
279 |
""")
|
280 |
agree_status = gr.Checkbox(label="I have read and understand the terms and conditions.")
|
281 |
start_chat_button = gr.Button("Start Chat with Chatlog")
|
|
|
|
|
282 |
print(agree_status)
|
283 |
#submit_info.click(submit_user_info, inputs=[name, occupation, yearsofexp, ethnicity, gender, age], outputs=[status_textbox])
|
284 |
status_label = gr.Markdown()
|
285 |
start_chat_button.click(start_chat_button_fn, inputs=[agree_status], outputs=[status_label])
|
286 |
+
#status_textbox = gr.Textbox(interactive = False)
|
287 |
|
288 |
|
289 |
with gr.Tab("Chat Bot"):
|