fffiloni commited on
Commit
2645c4d
·
1 Parent(s): 0335ad6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -44,8 +44,9 @@ def infer(question, history):
44
 
45
  res = []
46
  for human, ai in history[:-1]:
47
- pair = (human, ai)
48
  res.append(pair)
 
49
  chat_history = res
50
  print(chat_history)
51
  query = question
 
44
 
45
  res = []
46
  for human, ai in history[:-1]:
47
+ pair = f"Human:{human}\nAI:{ai}"
48
  res.append(pair)
49
+ res = ["\n".join(res)]
50
  chat_history = res
51
  print(chat_history)
52
  query = question