htagents / app.py
bugxynole's picture
modified application file
6bfb5e3
raw
history blame contribute delete
286 Bytes
import gradio as gr
def greet(name):
return f"Hello {name}!"
demo = gr.Interface(
fn=greet,
inputs=gr.Textbox(placeholder="Enter your name"),
outputs="text",
title="Greeting App",
description="A simple app to greet users.",
theme="default"
)
demo.launch()