File size: 267 Bytes
027887e
ce649db
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import streamlit as st
import image2text
import text2image
import home

PAGES = {"Home": home, "Text to Image": text2image, "Image to Text": image2text}
st.sidebar.title("Navigation")
page = st.sidebar.selectbox("Choose a task", list(PAGES.keys()))
PAGES[page].app()