File size: 265 Bytes
b3509ba
21638be
b3509ba
21638be
b3509ba
21638be
b3509ba
 
21638be
 
b3509ba
 
 
f04a946
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=False)