go_space3 / app.py
ted163's picture
Update app.py
b9ffcd2 verified
raw
history blame contribute delete
157 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch(share=True)