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