Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
infwinston committed Jan 3, 2024
1 parent 3365cbc commit 8b60a00
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion fastchat/model/model_registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def get_model_info(name: str) -> ModelInfo:


register_model_info(
["mistral-medium", "mixtral-8x7b-instruct-v0.1", "mistral-7b-instruct"],
["mixtral-8x7b-instruct-v0.1", "mistral-medium", "mistral-7b-instruct"],
"Mixtral of experts",
"https://mistral.ai/news/mixtral-of-experts/",
"A Mixture-of-Experts model by Mistral AI",
Expand Down
1 change: 0 additions & 1 deletion fastchat/serve/gradio_block_arena_anony.py
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,6 @@ def build_side_by_side_ui_anony(models):
textbox = gr.Textbox(
show_label=False,
placeholder="👉 Enter your prompt and press ENTER",
container=False,
elem_id="input_box",
)
send_btn = gr.Button(value="Send", variant="primary", scale=0)
Expand Down
1 change: 0 additions & 1 deletion fastchat/serve/gradio_block_arena_named.py
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,6 @@ def build_side_by_side_ui_named(models):
textbox = gr.Textbox(
show_label=False,
placeholder="👉 Enter your prompt and press ENTER",
container=False,
elem_id="input_box",
)
send_btn = gr.Button(value="Send", variant="primary", scale=0)
Expand Down
1 change: 0 additions & 1 deletion fastchat/serve/gradio_web_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -690,7 +690,6 @@ def build_single_model_ui(models, add_promotion_links=False):
textbox = gr.Textbox(
show_label=False,
placeholder="👉 Enter your prompt and press ENTER",
container=False,
elem_id="input_box",
)
send_btn = gr.Button(value="Send", variant="primary", scale=0)
Expand Down

0 comments on commit 8b60a00

Please sign in to comment.