From 5df5bde12770a581398a2974397d24bce417536a Mon Sep 17 00:00:00 2001 From: Juan Date: Tue, 4 Feb 2025 18:13:03 +1100 Subject: [PATCH] docs(core_distributed-group-chat): fix the typos in the docs in the README.md (#5347) ## Why are these changes needed? Wrong file names in the README.md ## Related issue number ## Checks - [x] I've included any doc changes needed for https://microsoft.github.io/autogen/. See https://microsoft.github.io/autogen/docs/Contribute#documentation to build and test documentation locally. - [ ] I've added tests (if relevant) corresponding to the changes introduced in this PR. - [ ] I've made sure all auto checks have passed. Co-authored-by: Mohammad Mazraeh --- python/samples/core_distributed-group-chat/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/samples/core_distributed-group-chat/README.md b/python/samples/core_distributed-group-chat/README.md index 29efcde94970..a5f52a64d30d 100644 --- a/python/samples/core_distributed-group-chat/README.md +++ b/python/samples/core_distributed-group-chat/README.md @@ -43,8 +43,8 @@ If you prefer to run Python files individually, follow these steps. Note that ea 1. `python run_host.py`: Starts the host and listens for agent connections. 2. `chainlit run run_ui.py --port 8001`: Starts the Chainlit app and UI agent and listens on UI topic to display messages. We're using port 8001 as the default port 8000 is used to run host (assuming using same machine to run all of the agents) -3. `python run_editor.py`: Starts the editor agent and connects it to the host. -4. `python run_writer.py`: Starts the writer agent and connects it to the host. +3. `python run_editor_agent.py`: Starts the editor agent and connects it to the host. +4. `python run_writer_agent.py`: Starts the writer agent and connects it to the host. 5. `python run_group_chat_manager.py`: Run chainlit app which starts group chat manager agent and sends the initial message to start the conversation. ## What's Going On?