jojortz's picture
add content from extract-leaderboard-gradio
f745baf
raw
history blame
313 Bytes
import gradio as gr
from tabs.arena_sxs import arena_sxs
from tabs.leaderboard import leaderboard
# Create the Gradio interface with tabs
with gr.Blocks() as demo:
with gr.Tab("Parser Arena"):
arena_sxs()
with gr.Tab("Leaderboard"):
leaderboard()
# Launch the app
demo.launch(share=True)