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