| import gradio as gr | |
| def greet(name): | |
| return f"Hello, {name}!" | |
| demo = gr.Interface( | |
| fn=greet, | |
| inputs=gr.Textbox(label="Your Name"), | |
| outputs=gr.Textbox(label="Greeting"), | |
| title="Simple Gradio App", | |
| description="A minimal Hugging Face Spaces Gradio example." | |
| ) | |
| if __name__ == "__main__": | |
| demo.launch() |