File size: 351 Bytes
bcf9fc0
 
e18dc18
 
 
 
 
5e5d211
 
 
 
 
 
 
e18dc18
 
 
7c6b19a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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()