jesse-lopez's picture
add hello world example
d8186c5
raw
history blame
145 Bytes
import gradio as gr
def greet(name):
return f"hello {name}"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()