Spaces:
Running
Running
Update app.py
Browse files
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 |
-
|
73 |
-
|
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 |
|