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