My-app.py / app.py
Gohil001's picture
App.py
7337db8 verified
raw
history blame contribute delete
373 Bytes
import gradio as gr
def greet(name):
return f"Hello, {name}! Welcome to your Gradio app."
demo = gr.Interface(
fn=greet,
inputs=gr.Textbox(label="Enter your name"),
outputs=gr.Textbox(label="Greeting"),
title="Gradio Greeting App",
description="This app greets you with a personalized message."
)
if __name__ == "__main__":
demo.launch()