Update app.py
Browse files
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
|