multimodalart's picture
multimodalart HF Staff
Update app.py
2eb1f70 verified
raw
history blame contribute delete
202 Bytes
import spaces_local
import gradio as gr
@spaces_local.GPU(duration=120)
def greet(name):
return "Hello " + name + "!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()