xiaofeifei commited on
Commit
134dbf5
1 Parent(s): afd1d0b
Files changed (1) hide show
  1. app.py +3 -4
app.py CHANGED
@@ -295,8 +295,7 @@ with gr.Blocks(title="HRMaster", theme="soft") as demo:
295
  txt = gr.Textbox(show_label=False, placeholder="Enter text and press enter").style(container=False)
296
  txt.submit(predict, [txt, state], [chatbot, state])
297
  clear.click(lambda: None, None, chatbot, queue=False)
298
- # with gr.Accordion("Open for More!"):
299
- # gr.Markdown("Look at me...")
300
 
301
- if __name__ == "__main__":
302
- demo.launch()
 
295
  txt = gr.Textbox(show_label=False, placeholder="Enter text and press enter").style(container=False)
296
  txt.submit(predict, [txt, state], [chatbot, state])
297
  clear.click(lambda: None, None, chatbot, queue=False)
298
+
 
299
 
300
+ if __name__ == "__main__":
301
+ demo.launch(debug=True)