Open soccerwithag opened 1 year ago
Since ConversationBufferMemory is not used, wondering if/how there is conversational memory. Sorry if dumb question. Appreciate this work. Thanks
Yes we store conversation in a streamlit session state variable st.session_state["chat_history"] and pass it to the chain on each call.
st.session_state["chat_history"]
Since ConversationBufferMemory is not used, wondering if/how there is conversational memory. Sorry if dumb question. Appreciate this work. Thanks