jozzy commited on
Commit
c94db43
·
1 Parent(s): f08a6e0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -69,8 +69,8 @@ with gr.Blocks() as chatHistory:
69
  clear_btn.click(fn=clear, inputs=None, outputs=None, queue=False)
70
 
71
  gr.Markdown("Click the Display button below to show all the chat history.")
72
- clear_btn = gr.Button("Display")
73
- clear_btn.click(fn=show, inputs=None, outputs="text", queue=False)
74
 
75
 
76
 
 
69
  clear_btn.click(fn=clear, inputs=None, outputs=None, queue=False)
70
 
71
  gr.Markdown("Click the Display button below to show all the chat history.")
72
+ show_btn = gr.Button("Display")
73
+ show_btn.click(fn=show, inputs=None, outputs="text", queue=False)
74
 
75
 
76