Update app.py
Browse files
app.py
CHANGED
|
@@ -1,4 +1,5 @@
|
|
| 1 |
import streamlit as st
|
|
|
|
| 2 |
|
| 3 |
-
|
| 4 |
-
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
+
from streamlit_chat import message
|
| 3 |
|
| 4 |
+
message("My message")
|
| 5 |
+
message("Hello bot!", is_user=True) # align's the message to the right
|