fs-bohn's picture
new gradio app
ef32b97
raw
history blame contribute delete
266 Bytes
import gradio as gr
from placeholders import PlaceholderImageTool
image_generator = PlaceholderImageTool()
iface = gr.Interface(
fn=image_generator,
inputs=gr.Text(placeholder="camel", label="prompt"),
outputs=gr.Image(shape=(64,64))
)
iface.launch()