WhiteWolf21's picture
update: version 2
cbcd0bf
raw
history blame contribute delete
449 Bytes
import streamlit as st
from multipage import MultiPage
from app_pages import home, about, main
m = MultiPage()
st.set_page_config(
page_title='Utilizing Generative AI for automated wafer defect inspection',
layout ="wide",
initial_sidebar_state="expanded",
)
# Add all your application here\
m.add_page("App", "cast", main.app)
m.add_page("Home", "house", home.app)
m.add_page("About", "info-circle", about.app)
# The main app
m.run()