Greetings / app.py
shukdev3's picture
Rename requirements.txt to app.py
fa70a0a verified
Raw
History Blame Contribute Delete
329 Bytes
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()