Correct README command examples for chess game sample. (#6008)

Fix outdated script references from chess_game.py to main.py
This commit is contained in:
WuYunlong 2025-03-21 10:30:30 +08:00 committed by GitHub
parent 8f58e4704f
commit 334209f825
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -63,12 +63,12 @@ please refer to the [Models documentation](https://microsoft.github.io/autogen/s
Run the following command to start the game:
```bash
python chess_game.py
python main.py
```
By default, the game will use a random agent to play against the AI agent.
You can enable human vs AI mode by setting the `--human` flag:
```bash
python chess_game.py --human
python main.py --human
```