ak0601 commited on
Commit
632eedb
·
verified ·
1 Parent(s): ef2e31e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -163,7 +163,7 @@ graph = builder.compile()
163
  st.set_page_config(page_title="Math Chatbot",layout="centered")
164
  st.title("Math Chatbot")
165
 
166
- for msg in st.session_session.chat_history:
167
  with st.chat_message(msg["role"]):
168
  st.markdown(msg["content"])
169
 
 
163
  st.set_page_config(page_title="Math Chatbot",layout="centered")
164
  st.title("Math Chatbot")
165
 
166
+ for msg in st.session_state.chat_history:
167
  with st.chat_message(msg["role"]):
168
  st.markdown(msg["content"])
169