SG_TestSpace / app.py
OP7's picture
Upload app.py
6cd29da verified
raw
history blame
155 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()