test-private-2 / app.py
chris-rannou's picture
chris-rannou HF Staff
commit while runtimeerror
ed264cd
raw
history blame
231 Bytes
""" App
"""
import gradio as gr
import time
import os
import spaces
2/0
@spaces.GPU
def greet(name):
return "Hello there {}".format(name)
# comment
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()