gradio / gapp.py
bobby20180331's picture
Upload folder using huggingface_hub
0311269 verified
raw
history blame
216 Bytes
import gradio as gr
def greet(name, intensity):
return "Hello, " + name + "!" * int(intensity)
demo = gr.Interface(
fn=greet,
inputs=["text", "slider"],
outputs=["text"],
)
demo.launch(share=True)