Spaces:
Runtime error
Runtime error
import sys | |
import gradio as gr | |
sys.path.append('.') | |
from gradio_app.interface import create_gradio_interface | |
def greet(name): | |
return "Hello " + name | |
""" | |
Define the entry point for the application. | |
""" | |
demo = create_gradio_interface() | |
demo.launch(share=True) |