Spaces:
GIZ
/
Running on CPU Upgrade

File size: 514 Bytes
22b8e0b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import appStore.keyword_search as keyword_search
import appStore.sdg_analysis as sdg_analysis
import appStore.coherence as coherence
import appStore.info as info
from appStore.multiapp import MultiApp
import streamlit as st

st.set_page_config(f'SDSN x GIZ Policy Action Tracking v0.1', layout="wide")

app = MultiApp()

app.add_app("Analyse Policy Document", sdg_analysis.app)
app.add_app("KeyWord Search", keyword_search.app)
app.add_app("Check Coherence", coherence.app)
app.add_app("Info", info.app)

app.run()