chat-faq / app.py
AnnasBlackHat's picture
using state
6358d4a
import streamlit as st
if 'auth_state' not in st.session_state:
st.session_state.auth_state = False
# st.set_page_config(page_title="FAQ and Chat App")
st.title("FAQ and Chat App")
st.write("Welcome to the FAQ and Chat App! You can read our FAQs or directly chat with our AI (experimental)")
st.page_link("pages/faq.py", label="FAQ")
st.page_link("pages/chat.py", label="Chat")