Update app.py
Browse files
app.py
CHANGED
@@ -80,7 +80,7 @@ def assistant_response(response):
|
|
80 |
if prompt := st.chat_input("What kind of class are you looking for?"):
|
81 |
with st.chat_message("user"):
|
82 |
st.markdown(prompt)
|
83 |
-
st.
|
84 |
assistant_response("Yah I'm tired af right now boi")
|
85 |
|
86 |
|
|
|
80 |
if prompt := st.chat_input("What kind of class are you looking for?"):
|
81 |
with st.chat_message("user"):
|
82 |
st.markdown(prompt)
|
83 |
+
st.session_state.messages.append({"role": "user", "content": prompt})
|
84 |
assistant_response("Yah I'm tired af right now boi")
|
85 |
|
86 |
|