xsa-dev commited on
Commit
1c1a36b
·
1 Parent(s): 731a8fc

remove print

Browse files
Files changed (1) hide show
  1. app.py +0 -1
app.py CHANGED
@@ -35,7 +35,6 @@ def generate_text(input_text, history):
35
  )
36
  for out in output:
37
  stream = copy.deepcopy(out)
38
- print(stream["choices"][0]["text"])
39
  temp += stream["choices"][0]["text"]
40
  yield temp
41
 
 
35
  )
36
  for out in output:
37
  stream = copy.deepcopy(out)
 
38
  temp += stream["choices"][0]["text"]
39
  yield temp
40