Spaces:
Build error
Build error
File size: 306 Bytes
357b0b8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import dashboard_text2image
import dashboard_image2image
import streamlit as st
PAGES = {
"Text to Image": dashboard_text2image,
"Image to Image": dashboard_image2image
}
st.sidebar.title("Navigation")
selection = st.sidebar.radio("Go to", list(PAGES.keys()))
page = PAGES[selection]
page.app()
|