File size: 373 Bytes
7337db8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
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()
|