From 0f4f231dc3550c392a7d7ded94d5df33e7749da2 Mon Sep 17 00:00:00 2001 From: Shrinivasan Neelamegam <138426132+neelamegams@users.noreply.github.com> Date: Thu, 25 Jun 2026 08:45:14 +0530 Subject: [PATCH 1/2] Update 02-build-a-basic-agent.md --- exercises/Python/02-build-a-basic-agent.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/exercises/Python/02-build-a-basic-agent.md b/exercises/Python/02-build-a-basic-agent.md index ece1316..80d3531 100644 --- a/exercises/Python/02-build-a-basic-agent.md +++ b/exercises/Python/02-build-a-basic-agent.md @@ -212,20 +212,20 @@ In the following exercises, you will: - **Solution**: Ensure you're in the correct Python environment and run the install command. -```bash # macOS / Linux - Activate environment and install +```bash source ~/projects/codejam-code-based-agents/env/bin/activate pip install crewai litellm ``` -```powershell # Windows (PowerShell) - Activate environment and install +```powershell .\env\Scripts\Activate.ps1 pip install crewai litellm ``` -```cmd # Windows (Command Prompt) - Activate environment and install +```cmd .\env\Scripts\activate.bat pip install crewai litellm ``` From 3c8c4f009bdebabf364890a5811322fa2c6c51ac Mon Sep 17 00:00:00 2001 From: Shrinivasan Neelamegam <138426132+neelamegams@users.noreply.github.com> Date: Thu, 25 Jun 2026 08:51:24 +0530 Subject: [PATCH 2/2] Update 02-build-a-basic-agent.md --- exercises/Python/02-build-a-basic-agent.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/exercises/Python/02-build-a-basic-agent.md b/exercises/Python/02-build-a-basic-agent.md index 80d3531..591c038 100644 --- a/exercises/Python/02-build-a-basic-agent.md +++ b/exercises/Python/02-build-a-basic-agent.md @@ -212,19 +212,19 @@ In the following exercises, you will: - **Solution**: Ensure you're in the correct Python environment and run the install command. -# macOS / Linux - Activate environment and install +_macOS / Linux - Activate environment and install_ ```bash source ~/projects/codejam-code-based-agents/env/bin/activate pip install crewai litellm ``` -# Windows (PowerShell) - Activate environment and install +_Windows (PowerShell) - Activate environment and install_ ```powershell .\env\Scripts\Activate.ps1 pip install crewai litellm ``` -# Windows (Command Prompt) - Activate environment and install +_Windows (Command Prompt) - Activate environment and install_ ```cmd .\env\Scripts\activate.bat pip install crewai litellm