zac commited on
Commit
15b6e14
·
1 Parent(s): 0e8a40e

Update app.py

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