quota-test / app.py
chris-rannou's picture
chris-rannou HF Staff
Update app.py
08ccd60 verified
raw
history blame contribute delete
226 Bytes
""" App
"""
import gradio as gr
import time
import os
import spaces
@spaces.GPU
def greet(name):
return "Hello there {}".format(name)
# comment
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()