import gradio as gr def build_page(): with gr.Column(elem_id="about-page-content-wrapper"): # --- Section 1: About --- gr.HTML( """
OpenHands Index tracks AI coding agent performance across software engineering benchmarks, providing a unified view of both accuracy and cost efficiency.
""" ) gr.Markdown("---", elem_classes="divider-line") # --- Section 2: Benchmark Details --- gr.HTML( """We evaluate agents across five categories:
Scoring: Average score is a macro-average across benchmarks (equal weighting). Cost is USD per task; agents without cost data are shown separately in plots.
""" ) gr.Markdown("---", elem_classes="divider-line") # --- Section 3: Resources --- gr.HTML( """Questions or feedback? Join us on Slack.
""" ) gr.Markdown("---", elem_classes="divider-line") # --- Section 6: Acknowledgements --- gr.HTML( """The leaderboard interface is adapted from the AstaBench Leaderboard by Allen Institute for AI.
""" ) gr.Markdown("---", elem_classes="divider-line") # --- Section 7: Citation --- gr.HTML( """
@misc{openhandsindex2025,
title={OpenHands Index: A Comprehensive Leaderboard for AI Coding Agents},
author={OpenHands Team},
year={2025},
howpublished={https://index.openhands.dev}
}
"""
)