hello_world / app.py
dawood's picture
dawood HF Staff
AI: Update app.py
4805bfa verified
raw
history blame contribute delete
196 Bytes
import gradio as gr
def greet(name, intensity):
return "Hi " * intensity + name + "!"
demo = gr.Interface(
fn=greet,
inputs=["text", "slider"],
outputs=["text"],
)
demo.launch()