excel_db / app.py
Ashish1722's picture
Upload 4 files
6708edd verified
Raw
History Blame Contribute Delete
329 Bytes
import streamlit as st
from upload import main as upload_main
from main import chat_interface
st.set_page_config(page_title="Excel Analysis Chat", layout="wide")
# Create tabs for upload and chat
tab1, tab2 = st.tabs(["Upload Data", "Chat Interface"])
with tab1:
upload_main()
with tab2:
chat_interface()