souljoy commited on
Commit
25e2470
·
1 Parent(s): 69d74b5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -32,6 +32,7 @@ def predict(msg, history=[]):
32
  )
33
 
34
  res = result.json()['choices'][0]['message']['content']
 
35
  history.append([msg, res])
36
  return history, history, res
37
 
 
32
  )
33
 
34
  res = result.json()['choices'][0]['message']['content']
35
+ print(res)
36
  history.append([msg, res])
37
  return history, history, res
38