koclip / text2image.py
jaketae's picture
feature: change radio buttons to dropdown
b1f513f
raw history blame
No virus
216 Bytes
import streamlit as st
from utils import load_model
def app(model_name):
model, processor = load_model(model_name)
st.title("Text to Image")
st.markdown("""
Some text goes in here.
""")