Skip to content

Commit 8e95854

Browse files
committed
Update documentation links for consistency and accuracy across various guides and lessons
1 parent e3ef1cb commit 8e95854

30 files changed

Lines changed: 112 additions & 93 deletions

docs/beginner/call-from-typescript.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,6 @@ You have completed the beginner path. Your agent can now:
167167

168168
## Next steps
169169

170-
- **Core concepts** — understand how the pieces fit together at scale ([Concepts](/docs/concepts/architecture.md))
171-
- **Add a real checkpointer** — replace `InMemoryCheckpointer` with Postgres for production ([Checkpointing guide](/docs/how-to/production/checkpointing.md))
172-
- **Python library reference** — explore the full `StateGraph` and `Agent` API ([Reference](/docs/reference/python/agent.md))
170+
- **Core concepts** — understand how the pieces fit together at scale ([Concepts](/docs/concepts/architecture))
171+
- **Add a real checkpointer** — replace `InMemoryCheckpointer` with Postgres for production ([Checkpointing guide](/docs/how-to/production/checkpointing))
172+
- **Python library reference** — explore the full `StateGraph` and `Agent` API ([Reference](/docs/reference/python/agent))

docs/concept2/connecting-clients.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ const ok = await client.ping(); // returns true if API is reachable
231231

232232
| Guide | Link |
233233
|---|---|
234-
| Build a chat UI with React | [agentflow-ui docs](/packages/agentflow-ui) |
234+
| Build a chat UI with React | [React agent tutorial](/docs/tutorials/from-examples/react-agent) |
235235
| Server-side auth setup | [Serving Agents](./serving-agents.md) |
236236
| Register remote tools on the server | [Agents, Tools & Control](./agents-tools-control.md) |
237-
| Full client API reference | [API Reference](/api/client) |
237+
| Full client API reference | [API Reference](/docs/reference/client/agentflow-client) |

docs/concept2/memory.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ flowchart TB
258258

259259
| Guide | Link |
260260
|---|---|
261-
| Add per-thread checkpointing | [How-To: Checkpointing](/how-to/checkpointing) |
262-
| Add long-term memory to an agent | [How-To: Memory Store](/how-to/memory-store) |
261+
| Add per-thread checkpointing | [How-To: Checkpointing](/docs/how-to/production/checkpointing) |
262+
| Add long-term memory to an agent | [How-To: Memory Store](/docs/how-to/python/use-memory-store) |
263263
| Custom storage backends | [Extensibility](./extensibility.md) |
264264
| Thread management via API | [Serving Agents](./serving-agents.md) |

docs/concept2/qa.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ Eval and testing tell you whether your agent is correct in controlled conditions
396396

397397
| Guide | Link |
398398
|---|---|
399-
| Write your first eval | [How-To: Evaluation](/how-to/evaluation) |
399+
| Write your first eval | [How-To: Evaluation](/docs/how-to/api-cli/run-evals) |
400400
| Custom evaluation criteria | [Extensibility](./extensibility.md) |
401401
| Lifecycle hooks and callbacks | [Agents, Tools & Control](./agents-tools-control.md) |
402402
| Publisher backends | [Serving Agents](./serving-agents.md) |

docs/courses/COURSE_STYLE_GUIDE.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -194,8 +194,8 @@ Continue to the next lesson to learn about [next topic].
194194

195195
### Or Explore
196196

197-
- [Related concepts](/docs/courses/shared/glossary.md)
198-
- [Beginner course](/docs/courses/genai-beginner/index.md)
197+
- [Related concepts](/docs/courses/shared/glossary)
198+
- [Beginner course](/docs/courses/genai-beginner)
199199
```
200200
201201
## Formatting Conventions
@@ -250,8 +250,8 @@ This is a warning.
250250
251251
```markdown
252252
- [Lesson 1](./lesson-1.md)
253-
- [Shared: Tokenization](/docs/courses/shared/tokenization-and-context-windows.md)
254-
- [AgentFlow Architecture](/docs/concepts/architecture.md)
253+
- [Shared: Tokenization](/docs/courses/shared/tokenization-and-context-windows)
254+
- [AgentFlow Architecture](/docs/concepts/architecture)
255255
```
256256
257257
### External Links

docs/courses/genai-advanced/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,10 +91,10 @@ flowchart TB
9191

9292
If you need a refresher:
9393

94-
- [LLM basics](/docs/courses/shared/llm-basics-for-engineers.md)
95-
- [Tokenization](/docs/courses/shared/tokenization-and-context-windows.md)
96-
- [Embeddings](/docs/courses/shared/embeddings-vectorization-and-similarity.md)
97-
- [Design checklists](/docs/courses/shared/design-checklists.md)
94+
- [LLM basics](/docs/courses/shared/llm-basics-for-engineers)
95+
- [Tokenization](/docs/courses/shared/tokenization-and-context-windows)
96+
- [Embeddings](/docs/courses/shared/embeddings-vectorization-and-similarity)
97+
- [Design checklists](/docs/courses/shared/design-checklists)
9898

9999
### Then Continue With Lessons
100100

docs/courses/genai-advanced/lesson-1-agentic-product-fit-and-system-bounded-autonomy.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ By the end of this lesson, you will be able to:
2424
## Prerequisites
2525

2626
- Completed Beginner Course or equivalent
27-
- [Design checklists](/docs/courses/shared/design-checklists.md)
27+
- [Design checklists](/docs/courses/shared/design-checklists)
2828

2929
---
3030

@@ -287,5 +287,5 @@ Continue to [Lesson 2: Single-agent runtime and bounded autonomy](./lesson-2-sin
287287

288288
### Or Explore
289289

290-
- [StateGraph concepts](/docs/concepts/state-graph.md) — Graph-based agent design
291-
- [Architecture concepts](/docs/concepts/architecture.md) — System architecture patterns
290+
- [StateGraph concepts](/docs/concepts/state-graph) — Graph-based agent design
291+
- [Architecture concepts](/docs/concepts/architecture) — System architecture patterns

docs/courses/genai-advanced/lesson-2-single-agent-runtime-and-bounded-autonomy.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ By the end of this lesson, you will be able to:
2424
## Prerequisites
2525

2626
- Lesson 1: Architecture decisions
27-
- [StateGraph concepts](/docs/concepts/state-graph.md)
27+
- [StateGraph concepts](/docs/concepts/state-graph)
2828

2929
---
3030

@@ -352,5 +352,5 @@ Continue to [Lesson 3: Context engineering, long context, and caching](./lesson-
352352

353353
### Or Explore
354354

355-
- [React Agent Tutorial](/docs/tutorials/from-examples/react-agent.md) — ReAct implementation
356-
- [Testing Reference](/docs/reference/python/testing.md) — Testing bounded agents
355+
- [React Agent Tutorial](/docs/tutorials/from-examples/react-agent) — ReAct implementation
356+
- [Testing Reference](/docs/reference/python/testing) — Testing bounded agents

docs/courses/genai-advanced/lesson-3-context-engineering-long-context-and-caching.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ By the end of this lesson, you will be able to:
2424

2525
## Prerequisites
2626

27-
- [Tokenization and context windows](/docs/courses/shared/tokenization-and-context-windows.md)
27+
- [Tokenization and context windows](/docs/courses/shared/tokenization-and-context-windows)
2828
- Lesson 2: Bounded autonomy
2929

3030
---
@@ -406,5 +406,5 @@ Continue to [Lesson 4: Knowledge systems and advanced RAG](./lesson-4-knowledge-
406406

407407
### Or Explore
408408

409-
- [State and Messages concepts](/docs/concepts/state-and-messages.md) — State management
410-
- [Streaming concepts](/docs/concepts/streaming.md) — Streaming for latency
409+
- [State and Messages concepts](/docs/concepts/state-and-messages) — State management
410+
- [Streaming concepts](/docs/concepts/streaming) — Streaming for latency

docs/courses/genai-advanced/lesson-4-knowledge-systems-and-advanced-rag.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ By the end of this lesson, you will be able to:
2424

2525
## Prerequisites
2626

27-
- [Chunking and retrieval primitives](/docs/courses/shared/chunking-and-retrieval-primitives.md)
27+
- [Chunking and retrieval primitives](/docs/courses/shared/chunking-and-retrieval-primitives)
2828
- Lesson 3: Context engineering
2929

3030
---
@@ -438,5 +438,5 @@ Continue to [Lesson 5: Router, manager, and specialist patterns](./lesson-5-rout
438438

439439
### Or Explore
440440

441-
- [Memory and Store concepts](/docs/concepts/memory-and-store.md) — Storage architecture
442-
- [Multi-agent Tutorial](/docs/tutorials/from-examples/multiagent.md) — Implementation patterns
441+
- [Memory and Store concepts](/docs/concepts/memory-and-store) — Storage architecture
442+
- [Multi-agent Tutorial](/docs/tutorials/from-examples/multiagent) — Implementation patterns

0 commit comments

Comments
 (0)