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