from dotenv import load_dotenv import gradio as gr load_dotenv() from interfaces import landing_interface, main_pipeline demo = gr.TabbedInterface([landing_interface, main_pipeline], ["Introduction", "Reranking"], title="GLiClass SandBox", theme=gr.themes.Base()) demo.queue() demo.launch(debug=True, share=True)