Spaces:
Running
Running
| """ App | |
| """ | |
| import gradio as gr | |
| import time | |
| import os | |
| import torch | |
| import spaces | |
| 1/0 | |
| def greet(name): | |
| return "Hello there {}".format(name) | |
| # comment updated 2 | |
| iface = gr.Interface(fn=greet, inputs="text", outputs="text") | |
| iface.launch() | |