File size: 449 Bytes
69e68df
2529764
 
69e68df
2529764
69e68df
2529764
 
69e68df
 
 
cbcd0bf
 
2529764
 
d8a9cf1
2529764
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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()