Update app.py
Browse files
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 |
|