demo / app.py
John Yan
Update app.py
c017f1e
raw
history blame
175 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!" + "and hello world 123f"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()