KvrParaskevi commited on
Commit
046f5e1
1 Parent(s): 6a1830a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -32,7 +32,7 @@ with st.container():
32
  st.markdown('<div class="scrollable-div">', unsafe_allow_html=True)
33
  #Langchain memory in session cache
34
  if 'memory' not in st.session_state:
35
- st.session_state.memory = demo_chat.demo_miny_memory(chat_model)
36
 
37
  #Check if chat history exists in this session
38
  if 'chat_history' not in st.session_state:
 
32
  st.markdown('<div class="scrollable-div">', unsafe_allow_html=True)
33
  #Langchain memory in session cache
34
  if 'memory' not in st.session_state:
35
+ st.session_state.memory = demo_chat.demo_miny_memory(model)
36
 
37
  #Check if chat history exists in this session
38
  if 'chat_history' not in st.session_state: