smjain commited on
Commit
72bd468
·
1 Parent(s): 33ca492

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -29,7 +29,7 @@ def converse(user_input, chat_history=[]):
29
  cls = "user" if m%2 == 0 else "bot"
30
  html += "<div class='msg {}'> {}</div>".format(cls, msg)
31
  html += "</div>"
32
-
33
  return html, chat_history
34
 
35
  import gradio as gr
 
29
  cls = "user" if m%2 == 0 else "bot"
30
  html += "<div class='msg {}'> {}</div>".format(cls, msg)
31
  html += "</div>"
32
+ print(html)
33
  return html, chat_history
34
 
35
  import gradio as gr