Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -10,8 +10,8 @@ def Chatbot():
|
|
| 10 |
if query := st.chat_input("Enter your message"):
|
| 11 |
umsg = bard.get_answer(query)
|
| 12 |
|
| 13 |
-
|
| 14 |
-
|
| 15 |
|
| 16 |
Chatbot()
|
| 17 |
|
|
|
|
| 10 |
if query := st.chat_input("Enter your message"):
|
| 11 |
umsg = bard.get_answer(query)
|
| 12 |
|
| 13 |
+
with st.chat_message("user")
|
| 14 |
+
st.write(umsg)
|
| 15 |
|
| 16 |
Chatbot()
|
| 17 |
|