RomZay commited on
Commit
2105c31
·
verified ·
1 Parent(s): 52b5151

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -8
app.py CHANGED
@@ -168,14 +168,14 @@ with gr.Blocks(css=".chatbox {height: 400px; overflow-y: auto; border: 1px solid
168
  history, assistant_reply = respond(message, api_key, max_tokens, top_p, temperature)
169
  full_history_html = render_message(history)
170
  scroll_script = """
171
- <script>
172
- setTimeout(() => {
173
- const container = document.getElementById('chatbox-container');
174
- container.scrollTop = container.scrollHeight;
175
- }, 0);
176
- </script>"""
177
-
178
- return full_history_html + scroll_script, history, "", message
179
 
180
 
181
  def regenerate_response(history, last_message, max_tokens, top_p, temperature):
 
168
  history, assistant_reply = respond(message, api_key, max_tokens, top_p, temperature)
169
  full_history_html = render_message(history)
170
  scroll_script = """
171
+ <script>
172
+ setTimeout(() => {
173
+ const container = document.getElementById('chatbox-container');
174
+ container.scrollTop = container.scrollHeight;
175
+ }, 0);
176
+ </script>"""
177
+
178
+ return full_history_html + scroll_script, history, "", message
179
 
180
 
181
  def regenerate_response(history, last_message, max_tokens, top_p, temperature):