Spaces:
Sleeping
Sleeping
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() | |