From 334209f825f1c27420774f40f76e166f8fd01b7d Mon Sep 17 00:00:00 2001 From: WuYunlong Date: Fri, 21 Mar 2025 10:30:30 +0800 Subject: [PATCH] Correct README command examples for chess game sample. (#6008) Fix outdated script references from chess_game.py to main.py --- python/samples/agentchat_chess_game/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/samples/agentchat_chess_game/README.md b/python/samples/agentchat_chess_game/README.md index 7dee8a5cf..97196b5a8 100644 --- a/python/samples/agentchat_chess_game/README.md +++ b/python/samples/agentchat_chess_game/README.md @@ -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 ```