fffiloni commited on
Commit
6294be6
·
1 Parent(s): cee9235

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -44,9 +44,9 @@ def add_text(history, text):
44
 
45
  def bot(history):
46
  response = infer(history[-1][0], history)
47
-
48
- for character in response:
49
- history[-1][1] = ""
50
  history[-1][1] += character
51
  time.sleep(0.05)
52
  yield history
 
44
 
45
  def bot(history):
46
  response = infer(history[-1][0], history)
47
+ history[-1][1] = ""
48
+
49
+ for character in response:
50
  history[-1][1] += character
51
  time.sleep(0.05)
52
  yield history