photoreal / app.py
KidConfident's picture
update app.py
c796285
raw
history blame contribute delete
151 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="image")
iface.launch()