Yingxu He commited on
Commit
f539d23
·
verified ·
1 Parent(s): 8356ff9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -53,7 +53,7 @@ def bot(history):
53
 
54
  for chunk in chain.stream({"text": user_message}):
55
  print(chunk)
56
- history[-1][1] += chunk["content"]
57
  yield history
58
 
59
 
 
53
 
54
  for chunk in chain.stream({"text": user_message}):
55
  print(chunk)
56
+ history[-1][1] += chunk["text"]
57
  yield history
58
 
59