redkye2 commited on
Commit
d0bd7d9
·
1 Parent(s): ea3a228
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -124,7 +124,8 @@ def main():
124
  page_icon=":books:")
125
  st.write(css, unsafe_allow_html=True)
126
 
127
- st.st.chat_input = None
 
128
  if "chat_history" not in st.session_state:
129
  st.session_state.chat_history = None
130
 
 
124
  page_icon=":books:")
125
  st.write(css, unsafe_allow_html=True)
126
 
127
+ if "messages" not in st:
128
+ st.chat_input = None
129
  if "chat_history" not in st.session_state:
130
  st.session_state.chat_history = None
131