Skip to content

Commit 36f7807

Browse files
authored
Update monitor_md.py (#3494)
1 parent 4c25b00 commit 36f7807

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ FastChat's core features include:
2626

2727
</details>
2828

29-
<a href="https://chat.lmsys.org"><img src="assets/demo_narrow.gif" width="70%"></a>
29+
<a href="https://lmarena.ai"><img src="assets/demo_narrow.gif" width="70%"></a>
3030

3131
## Contents
3232
- [Install](#install)
@@ -97,7 +97,7 @@ You can use the commands below to chat with them. They will automatically downlo
9797

9898
## Inference with Command Line Interface
9999

100-
<a href="https://chat.lmsys.org"><img src="assets/screenshot_cli.png" width="70%"></a>
100+
<a href="https://lmarena.ai"><img src="assets/screenshot_cli.png" width="70%"></a>
101101

102102
(Experimental Feature: You can specify `--style rich` to enable rich text output and better text streaming quality for some non-ASCII content. This may not work properly on certain terminals.)
103103

@@ -202,7 +202,7 @@ export FASTCHAT_USE_MODELSCOPE=True
202202

203203
## Serving with Web GUI
204204

205-
<a href="https://chat.lmsys.org"><img src="assets/screenshot_gui.png" width="70%"></a>
205+
<a href="https://lmarena.ai"><img src="assets/screenshot_gui.png" width="70%"></a>
206206

207207
To serve using the web UI, you need three main components: web servers that interface with users, model workers that host one or more models, and a controller to coordinate the webserver and model workers. You can learn more about the architecture [here](docs/server_arch.md).
208208

docs/arena.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Chatbot Arena
2-
Chatbot Arena is an LLM benchmark platform featuring anonymous, randomized battles, available at https://chat.lmsys.org.
2+
Chatbot Arena is an LLM benchmark platform featuring anonymous, randomized battles, available at https://lmarena.ai.
33
We invite the entire community to join this benchmarking effort by contributing your votes and models.
44

55
## How to add a new model

fastchat/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
CONVERSATION_LIMIT_MSG = "YOU HAVE REACHED THE CONVERSATION LENGTH LIMIT. PLEASE CLEAR HISTORY AND START A NEW CONVERSATION."
2929
INACTIVE_MSG = "THIS SESSION HAS BEEN INACTIVE FOR TOO LONG. PLEASE REFRESH THIS PAGE."
3030
SLOW_MODEL_MSG = "⚠️ Both models will show the responses all at once. Please stay patient as it may take over 30 seconds."
31-
RATE_LIMIT_MSG = "**RATE LIMIT OF THIS MODEL IS REACHED. PLEASE COME BACK LATER OR USE <span style='color: red; font-weight: bold;'>[BATTLE MODE](https://chat.lmsys.org)</span> (the 1st tab).**"
31+
RATE_LIMIT_MSG = "**RATE LIMIT OF THIS MODEL IS REACHED. PLEASE COME BACK LATER OR USE <span style='color: red; font-weight: bold;'>[BATTLE MODE](https://lmarena.ai)</span> (the 1st tab).**"
3232
# Maximum input length
3333
INPUT_CHAR_LEN_LIMIT = int(os.getenv("FASTCHAT_INPUT_CHAR_LEN_LIMIT", 12000))
3434
BLIND_MODE_INPUT_CHAR_LEN_LIMIT = int(

fastchat/serve/gradio_block_arena_anony.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -420,15 +420,15 @@ def build_side_by_side_ui_anony(models):
420420
{SURVEY_LINK}
421421
422422
## 📣 News
423-
- Chatbot Arena now supports images in beta. Check it out [here](https://chat.lmsys.org/?vision).
423+
- Chatbot Arena now supports images in beta. Check it out [here](https://lmarena.ai/?vision).
424424
425425
## 📜 Rules
426426
- Ask any question to two anonymous models (e.g., ChatGPT, Gemini, Claude, Llama) and vote for the better one!
427427
- You can chat for multiple turns until you identify a winner.
428428
- Votes won't be counted if model identities are revealed during the conversation.
429429
430-
## 🏆 Chatbot Arena [Leaderboard](https://leaderboard.lmsys.org)
431-
- We've collected **1,000,000+** human votes to compute an LLM leaderboard for 100+ models. Find out who is the 🥇LLM Champion [here](https://leaderboard.lmsys.org)!
430+
## 🏆 Chatbot Arena [Leaderboard](https://lmarena.ai/?leaderboard)
431+
- We've collected **1,000,000+** human votes to compute an LLM leaderboard for 100+ models. Find out who is the 🥇LLM Champion [here](https://lmarena.ai/?leaderboard)!
432432
433433
## 👇 Chat now!
434434
"""

fastchat/serve/gradio_block_arena_vision_anony.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -386,8 +386,8 @@ def build_side_by_side_vision_ui_anony(text_models, vl_models, random_questions=
386386
- Vote won't be counted if model identity is revealed during conversation.
387387
- **NEW** Image Support: <span style='color: #DE3163; font-weight: bold'>Upload an image</span> on your first turn to unlock the multimodal arena! Images should be less than 15MB.
388388
389-
## 🏆 Chatbot Arena [Leaderboard](https://leaderboard.lmsys.org)
390-
- We've collected **1,000,000+** human votes to compute an LLM Elo leaderboard for 100+ models. Find out who is the 🥇LLM Champion [here](https://leaderboard.lmsys.org)!
389+
## 🏆 Chatbot Arena [Leaderboard](https://lmarena.ai/?leaderboard)
390+
- We've collected **1,000,000+** human votes to compute an LLM Elo leaderboard for 100+ models. Find out who is the 🥇LLM Champion [here](https://lmarena.ai/?leaderboard)!
391391
392392
## 👇 Chat now!
393393
"""

fastchat/serve/monitor/monitor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -800,7 +800,7 @@ def build_leaderboard_tab(
800800
with gr.Column(scale=4):
801801
md_1 = gr.Markdown(default_md, elem_id="leaderboard_markdown")
802802
with gr.Column(scale=1):
803-
vote_button = gr.Button("Vote!", link="https://chat.lmsys.org")
803+
vote_button = gr.Button("Vote!", link="https://lmarena.ai")
804804
md2 = gr.Markdown(default_md_2, elem_id="leaderboard_markdown")
805805
if leaderboard_table_file:
806806
data = load_leaderboard_table_csv(leaderboard_table_file)

fastchat/serve/monitor/monitor_md.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def make_default_md_1(mirror=False):
7575

7676

7777
def make_default_md_2(mirror=False):
78-
mirror_str = "<span style='color: red; font-weight: bold'>This is a mirror of the live leaderboard created and maintained by the <a href='https://lmsys.org' style='color: red; text-decoration: none;'>LMSYS Organization</a>. Please link to <a href='https://leaderboard.lmsys.org' style='color: #B00020; text-decoration: none;'>leaderboard.lmsys.org</a> for citation purposes.</span>"
78+
mirror_str = "<span style='color: red; font-weight: bold'>This is a mirror of the live leaderboard created and maintained by the <a href='https://lmsys.org' style='color: red; text-decoration: none;'>LMSYS Organization</a>. Please link to <a href='https://lmarena.ai/leaderboard' style='color: #B00020; text-decoration: none;'>https://lmarena.ai/leaderboard</a> for citation purposes.</span>"
7979
leaderboard_md = f"""
8080
{mirror_str if mirror else ""}
8181
@@ -98,7 +98,7 @@ def make_arena_leaderboard_md(arena_df, last_updated_time, vision=False):
9898
"""
9999

100100
leaderboard_md += f"""
101-
Code to recreate leaderboard tables and plots in this [notebook]({notebook_url}). You can contribute your vote at [chat.lmsys.org](https://chat.lmsys.org)!
101+
Code to recreate leaderboard tables and plots in this [notebook]({notebook_url}). You can contribute your vote at [lmarena.ai](https://lmarena.ai)!
102102
"""
103103
return leaderboard_md
104104

@@ -118,7 +118,7 @@ def make_category_arena_leaderboard_md(arena_df, arena_subset_df, name="Overall"
118118
def make_full_leaderboard_md():
119119
leaderboard_md = """
120120
Three benchmarks are displayed: **Arena Elo**, **MT-Bench** and **MMLU**.
121-
- [Chatbot Arena](https://chat.lmsys.org/?arena) - a crowdsourced, randomized battle platform. We use 500K+ user votes to compute model strength.
121+
- [Chatbot Arena](https://lmarena.ai) - a crowdsourced, randomized battle platform. We use 1M+ user votes to compute model strength.
122122
- [MT-Bench](https://arxiv.org/abs/2306.05685): a set of challenging multi-turn questions. We use GPT-4 to grade the model responses.
123123
- [MMLU](https://arxiv.org/abs/2009.03300) (5-shot): a test to measure a model's multitask accuracy on 57 tasks.
124124

0 commit comments

Comments
 (0)