Minima / app.py
Shinjoo's picture
Upload app.py
b7049e6
raw
history blame contribute delete
155 Bytes
import gradio as gr
def greet(name):
return "Hello" + name + "!!"
iface = gr.Interface(fn = greet, inputs = "texts", outputs = "text")
iface.launch()