Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -105,8 +105,8 @@ def respond(message, api_key, max_tokens, top_p, temperature):
|
|
105 |
|
106 |
def render_message(history):
|
107 |
messages_html = """
|
108 |
-
<div id="chatbox-container" class="chatbox" style="height: 350px; overflow-y: auto;"> <!--
|
109 |
-
<div id="messages">""" #
|
110 |
|
111 |
for user_message, assistant_message, user_profile, assistant_profile, user_pic, assistant_pic in history:
|
112 |
if user_message:
|
@@ -167,9 +167,10 @@ with gr.Blocks(css=".chatbox {height: 400px; overflow-y: auto; border: 1px solid
|
|
167 |
def user_interaction(message, history, api_key, 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 = "<script>document.getElementById('chatbox-container').scrollTop = document.getElementById('chatbox-container').scrollHeight;</script>"
|
171 |
return full_history_html + scroll_script, history, "", message
|
172 |
|
|
|
173 |
def regenerate_response(history, last_message, max_tokens, top_p, temperature):
|
174 |
return "", []
|
175 |
|
|
|
105 |
|
106 |
def render_message(history):
|
107 |
messages_html = """
|
108 |
+
<div id="chatbox-container" class="chatbox" style="height: 350px; overflow-y: auto;"> <!-- Ensure the chatbox can scroll -->
|
109 |
+
<div id="messages">""" #
|
110 |
|
111 |
for user_message, assistant_message, user_profile, assistant_profile, user_pic, assistant_pic in history:
|
112 |
if user_message:
|
|
|
167 |
def user_interaction(message, history, api_key, 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 = "<script>setTimeout(() => { document.getElementById('chatbox-container').scrollTop = document.getElementById('chatbox-container').scrollHeight; }, 0);</script>"
|
171 |
return full_history_html + scroll_script, history, "", message
|
172 |
|
173 |
+
|
174 |
def regenerate_response(history, last_message, max_tokens, top_p, temperature):
|
175 |
return "", []
|
176 |
|