zac commited on
Commit
448c7e9
·
1 Parent(s): 7856803

Update app.py

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