moistdio's picture
Upload folder using huggingface_hub
6831a54 verified
raw
history blame contribute delete
253 Bytes
import spaces
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()