""" 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()