gpt-agents / app.py
alex-mindspace's picture
(hopefully) working swarm demo
b3509ba
raw
history blame
264 Bytes
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)