import streamlit as st def initialize_session_state(): if 'conversation_history' not in st.session_state: st.session_state.conversation_history = []