Silvia Terragni
added radio button
6985586
raw history blame
No virus
277 Bytes
import streamlit as st
import image2text
import text2image
import home
PAGES = {"Introduction": home, "Text to Image": text2image, "Image to Text": image2text}
st.sidebar.title("Explore our CLIP-Italian demo")
page = st.sidebar.radio("", list(PAGES.keys()))
PAGES[page].app()