POLRAMBORA commited on
Commit
175482e
·
verified ·
1 Parent(s): 843b2f6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -218,7 +218,7 @@ with gr.Blocks(css=css) as demo:
218
  loading_message = history + [(message, "Loading...", "You", "P-ALPLE", sessions[api_key]["avatar"], ASSISTANT_PIC_PATH)]
219
  yield render_message(loading_message), loading_message, ""
220
 
221
- partial_history = history
222
  for partial_reply in respond(message, api_key, max_tokens, top_p, temperature):
223
  partial_history = history + [(message, partial_reply, "You", "P-ALPLE", sessions[api_key]["avatar"], ASSISTANT_PIC_PATH)]
224
  yield render_message(partial_history), partial_history, ""
 
218
  loading_message = history + [(message, "Loading...", "You", "P-ALPLE", sessions[api_key]["avatar"], ASSISTANT_PIC_PATH)]
219
  yield render_message(loading_message), loading_message, ""
220
 
221
+ partial_history = history
222
  for partial_reply in respond(message, api_key, max_tokens, top_p, temperature):
223
  partial_history = history + [(message, partial_reply, "You", "P-ALPLE", sessions[api_key]["avatar"], ASSISTANT_PIC_PATH)]
224
  yield render_message(partial_history), partial_history, ""