demo-march-24 / app.py
srishti-hf1110's picture
Create app.py
e6d9a46 verified
raw
history blame contribute delete
198 Bytes
import gradio as gr
def greet(name):
return "Hello, " + name + "!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
# To create a shareable link (valid for 72 hours)
demo.launch()