ThomasSimonini HF staff commited on
Commit
62ca94b
1 Parent(s): 8a28d56

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -79,6 +79,7 @@ def chat(message, npc_name, initial_prompt, top_p, temperature, max_new_tokens,
79
 
80
  answer = clean_chat_output(output, prompt, interlocutor_names)
81
  response = answer
 
82
  history[-1] = (message, response)
83
  return response, history
84
 
 
79
 
80
  answer = clean_chat_output(output, prompt, interlocutor_names)
81
  response = answer
82
+ print("response", answer)
83
  history[-1] = (message, response)
84
  return response, history
85