zac commited on
Commit
2d90bf9
·
1 Parent(s): 0b19b1e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -25,7 +25,8 @@ def generate_text(input_text, history):
25
  for out in output:
26
  stream = copy.deepcopy(out)
27
  print(stream["choices"][0]["text"])
28
- yield "".join(str(stream["choices"][0]["text"]))
 
29
 
30
  history =["init",input_text_with_history]
31
 
 
25
  for out in output:
26
  stream = copy.deepcopy(out)
27
  print(stream["choices"][0]["text"])
28
+ yield "".join(str(stream["choices"][0]["text"]))
29
+ print("latest token : "stream["choices"][-1]["text"])
30
 
31
  history =["init",input_text_with_history]
32