Update app.py
Browse files
app.py
CHANGED
@@ -152,7 +152,7 @@ if user_message := st.chat_input("Enter message"):
|
|
152 |
# Add user message to chat history
|
153 |
st.session_state.messages.append({"role": "user", "content": user_message})
|
154 |
|
155 |
-
response = handle_submission
|
156 |
# Display the agent's response
|
157 |
## https://docs.streamlit.io/library/cheatsheet
|
158 |
with st.chat_message("assistant"):
|
|
|
152 |
# Add user message to chat history
|
153 |
st.session_state.messages.append({"role": "user", "content": user_message})
|
154 |
|
155 |
+
response = handle_submission()
|
156 |
# Display the agent's response
|
157 |
## https://docs.streamlit.io/library/cheatsheet
|
158 |
with st.chat_message("assistant"):
|