minimal / app.py
Mario Namtao Shianti Larcher
Add application file
ecb8582
raw
history blame
135 Bytes
import gradio as gr
def greet(name):
return "Hello" + name + "!!"
iface = gr.Interface(fn=greet, inputs="text")
iface.launch()