ImanAmran's picture
Update app.py
0224b9d
raw
history blame
224 Bytes
import gradio as gr
def result(name):
return "Hello " + name + "!"
demo = gr.Interface(
fn=result,
inputs=gr.Textbox(lines=2, placeholder="Type your name here to register"),
outputs="text",
)
demo.launch()