Spaces:
Runtime error
Runtime error
#!/usr/bin/env python | |
# coding:utf-8 | |
""" | |
Name: app.py | |
Author: Sanjeeva Reddy Dodlapati | |
Time: 8/21/22 10:17 PM | |
Desc: | |
""" | |
import gradio as gr | |
def greet(name): | |
return "Hello " + name + "!!" | |
iface = gr.Interface(fn=greet, inputs="text", outputs="text") | |
iface.launch() |