demo-app / app.py
harxsan's picture
Update app.py
a52128c verified
raw
history blame
156 Bytes
import gradio as gr
def greet(name):
return f"Hello, {name}!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch(share=True)