Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -101,7 +101,7 @@ with gr.Blocks(css=".chatbox {height: 400px; overflow-y: auto; border: 1px solid
|
|
101 |
return render_message(history), history, "", message
|
102 |
|
103 |
def regenerate_response(history, last_message, system_message, max_tokens, top_p, temperature):
|
104 |
-
return
|
105 |
|
106 |
msg_input.submit(user_interaction,
|
107 |
inputs=[msg_input, history_state, system_message, max_tokens, top_p, temperature],
|
|
|
101 |
return render_message(history), history, "", message
|
102 |
|
103 |
def regenerate_response(history, last_message, system_message, max_tokens, top_p, temperature):
|
104 |
+
return "", []
|
105 |
|
106 |
msg_input.submit(user_interaction,
|
107 |
inputs=[msg_input, history_state, system_message, max_tokens, top_p, temperature],
|