Chris4K commited on
Commit
67d6edc
·
verified ·
1 Parent(s): 3ccf35b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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"):