File size: 442 Bytes
2a0bb43
5cc77db
ee7859a
33b33dd
f22bd2a
33b33dd
6f02b92
33b33dd
 
 
40c0a4f
33b33dd
5cc77db
33b33dd
 
ed07ef7
33b33dd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import apps.sdg_pd as sdg_tab
import apps.intro as intro

# import appStore.check_site as check_site
from apps.multiapp import MultiApp
import streamlit as st

st.set_page_config(f'Embedding Visualisator (Sentence Transformer)', 
                    layout="wide",
                    initial_sidebar_state="expanded")

app = MultiApp()
app.add_app("Intro", intro.app)
app.add_app("SDG", sdg_tab.app)
#app.add_app("Info", info.app)

app.run()