Update app.py
Browse files
app.py
CHANGED
|
@@ -86,9 +86,9 @@ for message in st.session_state.messages:
|
|
| 86 |
st.markdown(message["content"])
|
| 87 |
|
| 88 |
if prompt := st.chat_input("What kind of class are you looking for?"):
|
| 89 |
-
with st.chat_message("user"):
|
| 90 |
-
|
| 91 |
-
|
| 92 |
assistant_response("Yah I'm tired af right now boi")
|
| 93 |
|
| 94 |
|
|
|
|
| 86 |
st.markdown(message["content"])
|
| 87 |
|
| 88 |
if prompt := st.chat_input("What kind of class are you looking for?"):
|
| 89 |
+
# with st.chat_message("user"):
|
| 90 |
+
# st.markdown(prompt)
|
| 91 |
+
st.session_state.messages.append({"role": "user", "content": prompt})
|
| 92 |
assistant_response("Yah I'm tired af right now boi")
|
| 93 |
|
| 94 |
|