Spaces:
Build error
Build error
File size: 314 Bytes
f1d50b1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import streamlit as st
import image2text
import text2image
PAGES = {"Text to Image": text2image, "Image to Text": image2text}
st.sidebar.title("Navigation")
model = st.sidebar.radio("Model", ["koclip/koclip", "koclip/koclip-large"])
page = st.sidebar.radio("Go to", list(PAGES.keys()))
PAGES[page].app(model)
|