HelloWorld / app.py
border1px's picture
Create app.py
bb215f5 verified
raw
history blame contribute delete
161 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()