Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions exercises/Python/03-add-your-first-tool.md
Original file line number Diff line number Diff line change
Expand Up @@ -293,35 +293,35 @@ if __name__ == "__main__":

**From repository root:**

_macOS / Linux_
```bash
# macOS / Linux
python3 ./project/Python/starter-project/basic_agent.py
```

_Windows (PowerShell)_
```powershell
# Windows (PowerShell)
python .\project\Python\starter-project\basic_agent.py
```

_Windows (Command Prompt)_
```cmd
# Windows (Command Prompt)
python .\project\Python\starter-project\basic_agent.py
```

**From starter-project folder:**

_macOS / Linux_
```bash
# macOS / Linux
python3 basic_agent.py
```

_Windows (PowerShell)_
```powershell
# Windows (PowerShell)
python basic_agent.py
```

_Windows (Command Prompt)_
```cmd
# Windows (Command Prompt)
python basic_agent.py
```

Expand Down Expand Up @@ -546,35 +546,35 @@ RPT1_DEPLOYMENT_URL="https://api.ai.prod.eu-central-1.aws.ml.hana.ondemand.com/v

**From starter-project folder:**

_macOS / Linux_
```bash
# macOS / Linux
python3 basic_agent.py
```

_Windows (PowerShell)_
```powershell
# Windows (PowerShell)
python basic_agent.py
```

_Windows (Command Prompt)_
```cmd
# Windows (Command Prompt)
python basic_agent.py
```

**From repository root:**

_macOS / Linux_
```bash
# macOS / Linux
python3 ./project/Python/starter-project/basic_agent.py
```

_Windows (PowerShell)_
```powershell
# Windows (PowerShell)
python .\project\Python\starter-project\basic_agent.py
```

_Windows (Command Prompt)_
```cmd
# Windows (Command Prompt)
python .\project\Python\starter-project\basic_agent.py
```

Expand Down