Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Copilot Arena leaderboard #3618

Merged
merged 10 commits into from
Dec 19, 2024
Prev Previous commit
Next Next commit
add hyperlink
adityamittal13 committed Nov 14, 2024
commit 518395b1346e5c8dc0967e9abd7b653b08710eb2
2 changes: 1 addition & 1 deletion fastchat/serve/monitor/monitor.py
Original file line number Diff line number Diff line change
@@ -929,7 +929,7 @@ def build_copilot_arena_tab():
num_models = len(leaderboard)
total_battles = int(leaderboard['Votes'].sum())//2
md = f"""
Copilot Arena is a free AI coding assistant that provides paired responses from different state-of-the-art LLMs. This leaderboard contains the relative performance and ranking of {num_models} models over {total_battles} battles.
[Copilot Arena](https://blog.lmarena.ai/blog/2024/copilot-arena/) is a free AI coding assistant that provides paired responses from different state-of-the-art LLMs. This leaderboard contains the relative performance and ranking of {num_models} models over {total_battles} battles.
"""

gr.Markdown(md, elem_id="leaderboard_markdown")