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?