lcipolina commited on
Commit
2c45894
·
verified ·
1 Parent(s): 2f302f3

Added string regarding poor reasoning outputs

Browse files
Files changed (1) hide show
  1. app.py +8 -3
app.py CHANGED
@@ -710,12 +710,17 @@ with gr.Blocks() as interface:
710
  config = create_player_config(include_aggregated=False)
711
 
712
  # Header and introduction
713
- gr.Markdown("# LLM Game Arena")
714
- gr.Markdown("Play games against LLMs or watch LLMs compete!")
715
  gr.Markdown(
716
  f"> **🤖 Available AI Players**: {config['model_info']}\n"
717
  "> Local transformer models run with Hugging Face transformers. "
718
- "No API tokens required!"
 
 
 
 
 
719
  )
720
 
721
  # Game selection and configuration
 
710
  config = create_player_config(include_aggregated=False)
711
 
712
  # Header and introduction
713
+ gr.Markdown("# Interactive Game Reasoning Arena")
714
+ gr.Markdown("Play games against LLMs, a random bot or watch LLMs compete!")
715
  gr.Markdown(
716
  f"> **🤖 Available AI Players**: {config['model_info']}\n"
717
  "> Local transformer models run with Hugging Face transformers. "
718
+ "No API tokens required!\n\n"
719
+ "> **⚠️ Note on Reasoning Quality**: The available models are "
720
+ "relatively basic (GPT-2, DistilGPT-2, etc.) and may produce "
721
+ "limited or nonsensical reasoning. They are suitable for "
722
+ "demonstration purposes but don't expect sophisticated "
723
+ "strategic thinking or coherent explanations."
724
  )
725
 
726
  # Game selection and configuration