nyoo827 commited on
Commit
79f96f0
1 Parent(s): 9e8e242

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -117,7 +117,7 @@ def main():
117
  st.write(css, unsafe_allow_html=True)
118
 
119
  if "conversation" not in st.session_state:
120
- st.session_state.conversation = None
121
  if "chat_history" not in st.session_state:
122
  st.session_state.chat_history = None
123
 
 
117
  st.write(css, unsafe_allow_html=True)
118
 
119
  if "conversation" not in st.session_state:
120
+ st.session_state.conversation = get_conversation_chain(None)
121
  if "chat_history" not in st.session_state:
122
  st.session_state.chat_history = None
123