hello_world_4 / app.py
abidlabs's picture
abidlabs HF staff
Create app.py
52218c3
raw history blame
No virus
200 Bytes
import gradio as gr
def greet(name, intensity):
return "Hello " * intensity + name + "!"
demo = gr.Interface(
fn=greet,
inputs=["text", "slider"],
outputs=["text"],
)
demo.launch()