Spaces:
Build error
Build error
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() |