Ko-AgentBench / app.py
Harheem Kim
set dark theme
71ade2b
raw
history blame
328 Bytes
# Add this at the top of your script
import warnings
warnings.filterwarnings("ignore")
import gradio as gr
from tabs.leaderboard_v1 import create_leaderboard_v2_interface
def create_app():
with gr.Blocks(theme='dark') as app:
create_leaderboard_v2_interface()
return app
demo = create_app()
demo.launch()