mm748-space01 / app.py
Kusalin's picture
Created app.py
9e5a27a verified
raw
history blame contribute delete
147 Bytes
import gradio as gr
def greet(name):
return "hello" + name +"!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()