Spaces:
Runtime error
Runtime error
File size: 264 Bytes
b3509ba 21638be b3509ba 21638be b3509ba 21638be b3509ba 21638be b3509ba |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
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) |