Spaces:
Sleeping
Sleeping
| import gradio as gr | |
| import pages_py as pages | |
| from pages_py.activities import activities | |
| from pages_py.chatbot import create_chatbot | |
| from pages_py.home import home | |
| with gr.Blocks() as app: | |
| with gr.Navbar(): | |
| with gr.Tabs(): | |
| with gr.Tab("Chatbot"): | |
| create_chatbot().render() | |
| if __name__ == "__main__": | |
| app.launch(share=True) |