shortshort / app.py
tamatwi's picture
Create app.py
b90df84 verified
raw
history blame contribute delete
158 Bytes
import gradio as gr
def greet(name):
return f"Hello, {name}!"
demo = gr.Interface(
fn=greet,
inputs="text",
outputs="text",
)
demo.launch()