Skip to content

Commit cb08723

Browse files
assignments: update urls to use main repo path
Co-authored-by: Ona <no-reply@ona.com>
1 parent 3ba5996 commit cb08723

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/content/chapters/04-context-windows.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,8 +172,8 @@ import Assignment from "../../components/Assignment.astro";
172172
chapter={4}
173173
title="Make the context window visible"
174174
starterFile="ch04-context-windows/starter.py"
175-
onaUrl="https://app.gitpod.io/#https://github.com/Siddhant-K-code/agentic-engineering-assignments/tree/main/ch04-context-windows"
176-
localUrl="https://github.com/Siddhant-K-code/agentic-engineering-assignments/raw/main/ch04-context-windows/starter.py"
175+
onaUrl="https://app.gitpod.io/#https://github.com/Siddhant-K-code/agentic-engineering-guide/tree/main/assignments/ch04-context-windows"
176+
localUrl="https://github.com/Siddhant-K-code/agentic-engineering-guide/raw/main/assignments/ch04-context-windows/starter.py"
177177
>
178178

179179
Run the starter. It builds a multi-turn conversation and prints the full `messages` array after each turn with a running token count. Then add a 4th turn that asks the model to recall something specific from turn 1. Watch whether it does.

src/content/chapters/09-prompt-injection.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,8 +216,8 @@ import Assignment from "../../components/Assignment.astro";
216216
chapter={9}
217217
title="Inject, observe, defend"
218218
starterFile="ch09-prompt-injection/starter.py"
219-
onaUrl="https://app.gitpod.io/#https://github.com/Siddhant-K-code/agentic-engineering-assignments/tree/main/ch09-prompt-injection"
220-
localUrl="https://github.com/Siddhant-K-code/agentic-engineering-assignments/raw/main/ch09-prompt-injection/starter.py"
219+
onaUrl="https://app.gitpod.io/#https://github.com/Siddhant-K-code/agentic-engineering-guide/tree/main/assignments/ch09-prompt-injection"
220+
localUrl="https://github.com/Siddhant-K-code/agentic-engineering-guide/raw/main/assignments/ch09-prompt-injection/starter.py"
221221
>
222222

223223
The starter runs an agent that reads a support ticket and drafts a reply. Two fixture tickets are included: one with a direct injection, one with a subtle indirect injection. Run both. Then strengthen the system prompt and run again.

src/content/chapters/17-agent-loop.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,8 +197,8 @@ import Assignment from "../../components/Assignment.astro";
197197
chapter={17}
198198
title="Build a bare-metal agent loop"
199199
starterFile="ch17-agent-loop/starter.py"
200-
onaUrl="https://app.gitpod.io/#https://github.com/Siddhant-K-code/agentic-engineering-assignments/tree/main/ch17-agent-loop"
201-
localUrl="https://github.com/Siddhant-K-code/agentic-engineering-assignments/raw/main/ch17-agent-loop/starter.py"
200+
onaUrl="https://app.gitpod.io/#https://github.com/Siddhant-K-code/agentic-engineering-guide/tree/main/assignments/ch17-agent-loop"
201+
localUrl="https://github.com/Siddhant-K-code/agentic-engineering-guide/raw/main/assignments/ch17-agent-loop/starter.py"
202202
>
203203

204204
No framework. The starter implements a raw loop and prints state at each iteration: `iteration N | tokens: X | decision: [tool_call | final_answer]`. Task: find all Python files in `fixtures/` that import `os`. Watch the loop. Count iterations.

0 commit comments

Comments
 (0)