RomZay commited on
Commit
f08bb05
·
verified ·
1 Parent(s): 94c332d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -172,14 +172,14 @@ with gr.Blocks(css=".chatbox {height: 400px; overflow-y: auto; border: 1px solid
172
  full_history_html = render_message(history)
173
 
174
  scroll_script = """
175
- <script>
176
- window.onload = function() {
177
  const container = document.getElementById('chatbox-container');
178
  container.scrollTop = container.scrollHeight; // Scroll to the bottom
179
- };
180
- </script>"""
181
 
182
- return full_history_html + scroll_script, history, "", message
183
 
184
 
185
 
 
172
  full_history_html = render_message(history)
173
 
174
  scroll_script = """
175
+ <script>
176
+ window.onload = function() {
177
  const container = document.getElementById('chatbox-container');
178
  container.scrollTop = container.scrollHeight; // Scroll to the bottom
179
+ };
180
+ </script>"""
181
 
182
+ return full_history_html + scroll_script, history, "", message
183
 
184
 
185