Wootang01 commited on
Commit
f4392b6
·
1 Parent(s): b74d83a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -12,10 +12,10 @@ def predict(input, history=[]):
12
  response = tokenizer.decode(history[0]).replace("<|endoftext|>", "\n")
13
 
14
  html = "<div class='chatbot'>"
15
- for m, msg in enumerate(response):
16
- cls = "user" if m%2 == 0 else "bot"
17
- html += "<div class='msg {}'> {}</div>".format(cls, msg)
18
- html += "</div>"
19
 
20
  return response, history
21
 
 
12
  response = tokenizer.decode(history[0]).replace("<|endoftext|>", "\n")
13
 
14
  html = "<div class='chatbot'>"
15
+ for m, msg in enumerate(response):
16
+ cls = "user" if m%2 == 0 else "bot"
17
+ html += "<div class='msg {}'> {}</div>".format(cls, msg)
18
+ html += "</div>"
19
 
20
  return response, history
21