File size: 432 Bytes
484daae 33d4243 484daae 33d4243 484daae 33d4243 484daae 33d4243 484daae 33d4243 484daae |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import streamlit as st
from sidebar import display_sidebar
from chat_interface import display_chat_interface
st.title("Langchain RAG Chatbot")
# Initialize session state variables
if "messages" not in st.session_state:
st.session_state.messages = []
if "session_id" not in st.session_state:
st.session_state.session_id = None
# Display the sidebar
display_sidebar()
# Display the chat interface
display_chat_interface() |