HQTextGANV0 / app.py
SusiePHaltmann's picture
Update app.py
3ca8cd2
raw
history blame
260 Bytes
import streamlit as st
from text2img import text2img
st.text("Hello, world!")
st.text("This is a test GUI for streamlit that uses text2img to make a png file.")
png = text2img("Hello, world!")
st.image(png, caption="Hello, world!", use_column_width=True)