File size: 329 Bytes
6708edd
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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()