pngwn HF Staff commited on
Commit
4f0476c
·
verified ·
1 Parent(s): e3a37e1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -7,6 +7,9 @@ with gr.Blocks() as demo:
7
  chatbot = gr.Chatbot(label="test-perf-pr")
8
  msg = gr.Textbox()
9
  clear = gr.ClearButton([msg, chatbot])
 
 
 
10
 
11
  def respond(message, chat_history):
12
  bot_message = "How are you?" * 10000
 
7
  chatbot = gr.Chatbot(label="test-perf-pr")
8
  msg = gr.Textbox()
9
  clear = gr.ClearButton([msg, chatbot])
10
+
11
+ for i in range(2000):
12
+ gr.Button("hi", visible=False)
13
 
14
  def respond(message, chat_history):
15
  bot_message = "How are you?" * 10000