Amber Tanaka
Refactor pages and improve tooltips! (#13)
ae05bbd unverified
raw
history blame
345 Bytes
import gradio as gr
from content import CODE_EXECUTION_DESCRIPTION
from category_page_builder import build_category_page
# Define the category for this page
CATEGORY_NAME = "Code Execution"
with gr.Blocks() as demo:
gr.Markdown(f"## Astabench {CATEGORY_NAME} Leaderboard")
build_category_page(CATEGORY_NAME, CODE_EXECUTION_DESCRIPTION)