chipmunk / app.py
jerukperas's picture
Super-squash branch 'main' using huggingface_hub
02baa88 verified
raw
history blame contribute delete
173 Bytes
import spaces
import gradio as gr
@spaces.GPU
def greet(name):
return "Hello " + name + "!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()