Keiraj's picture
Update app.py
5e5d211 verified
raw
history blame
351 Bytes
import gradio as gr
# Function to greet the user
def greet(name):
return f"Hello, {name}!"
# Creating a Gradio interface
demo = gr.Interface(
fn=greet, inputs="text",
outputs="text",
title="Cute Greeting App",
description="This app greets the user with a fun message!",
css="style.css"
)
# Launch the app
demo.launch()