From ca0b6755ac4a97b2f34ad895e4151797ba4660e6 Mon Sep 17 00:00:00 2001 From: Shrinivasan Neelamegam <138426132+neelamegams@users.noreply.github.com> Date: Thu, 25 Jun 2026 08:54:53 +0530 Subject: [PATCH] Update 04-building-multi-agent-system.md --- exercises/Python/04-building-multi-agent-system.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/exercises/Python/04-building-multi-agent-system.md b/exercises/Python/04-building-multi-agent-system.md index d5405b7..bea9aaf 100644 --- a/exercises/Python/04-building-multi-agent-system.md +++ b/exercises/Python/04-building-multi-agent-system.md @@ -298,35 +298,35 @@ analyze_evidence_task: **From repository root:** +_macOS / Linux_ ```bash -# macOS / Linux python3 ./project/Python/starter-project/main.py ``` +_Windows (PowerShell)_ ```powershell -# Windows (PowerShell) python .\project\Python\starter-project\main.py ``` +_Windows (Command Prompt)_ ```cmd -# Windows (Command Prompt) python .\project\Python\starter-project\main.py ``` **From starter-project folder:** +_macOS / Linux_ ```bash -# macOS / Linux python3 main.py ``` +_Windows (PowerShell)_ ```powershell -# Windows (PowerShell) python main.py ``` +_Windows (Command Prompt)_ ```cmd -# Windows (Command Prompt) python main.py ```