Minesweeper

游戏说明 / Instructions

欢迎来到扫雷游戏!以下是游戏玩法说明:

Welcome to Minesweeper! Here are the instructions:

  • 普通模式:点击格子即可揭开格子,如果揭开的是地雷,游戏结束。
  • Normal Mode: Click on a cell to reveal it. If it's a mine, the game ends.
  • AI模式 / AI Mode
    • AI Agent:点击“AI Agent”按钮,将使用基于Pytorch的深度强化学习AI自动玩扫雷游戏。
    • AI Agent: Click the "AI Agent" button to use a deep reinforcement learning AI based on Pytorch to play the game automatically.
    • LLM Agent:点击“LLM Agent”按钮,将调用阿里的qwen-max模型来玩扫雷游戏。
    • LLM Agent: Click the "LLM Agent" button to use Alibaba's qwen-max model to play the game.
  • 设置棋盘大小和地雷数量后,点击“Start Game”开始游戏。
  • Set the board size and number of mines, then click "Start Game" to begin.
  • 点击“Reset Game”可以重置当前游戏。
  • Click "Reset Game" to reset the current game.
{{ cell === 9 ? '' : cell === -1 ? '💣' : cell }}