gpt-agents / app.py
alex-mindspace's picture
share is not supported in the space
f04a946
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)