hello-input / app.py
wangli
feat: fix
d18d42a
import gradio as gr
def greet(input):
return "Hello, " + input + "!"
gr.Interface(
fn=greet,
inputs=gr.Textbox(lines=1, placeholder="Name Here..."),
outputs="text",
title="Hello, World!",
).launch()