hello_world_4 / run.py
aliabd's picture
aliabd HF staff
Upload folder using huggingface_hub
a7f0dea
raw
history blame
No virus
231 Bytes
import gradio as gr
def greet(name, intensity):
return "Hello " * intensity + name + "!"
demo = gr.Interface(
fn=greet,
inputs=["text", "slider"],
outputs=["text"],
)
if __name__ == "__main__":
demo.launch()