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