@@ -56,7 +56,7 @@ Agentic Coding should be a collaboration between Human System Design and Agent I
56
56
57
57
3. **Utilities**: Based on the Flow Design, identify and implement necessary utility functions.
58
58
- Think of your AI system as the brain. It needs a body—these *external utility functions*—to interact with the real world:
59
- <div align="center"><img src="https://github.com/the-pocket/PocketFlow /raw/main/assets/utility.png?raw=true" width="400"/></div>
59
+ <div align="center"><img src="https://github.com/the-pocket/.github /raw/main/assets/utility.png?raw=true" width="400"/></div>
60
60
61
61
- Reading inputs (e.g., retrieving Slack messages, reading emails)
62
62
- Writing outputs (e.g., generating reports, sending emails)
@@ -127,7 +127,7 @@ Agentic Coding should be a collaboration between Human System Design and Agent I
127
127
128
128
- > **You'll likely iterate a lot!** Expect to repeat Steps 3–6 hundreds of times.
129
129
>
130
- > <div align="center"><img src="https://github.com/the-pocket/PocketFlow /raw/main/assets/success.png?raw=true" width="400"/></div>
130
+ > <div align="center"><img src="https://github.com/the-pocket/.github /raw/main/assets/success.png?raw=true" width="400"/></div>
131
131
{: .best-practice }
132
132
133
133
8. **Reliability**
@@ -244,7 +244,7 @@ A [100-line](https://github.com/the-pocket/PocketFlow/blob/main/pocketflow/__ini
244
244
- **Agentic-Coding**: Intuitive enough for AI agents to help humans build complex LLM applications.
245
245
246
246
<div align="center">
247
- <img src="https://github.com/the-pocket/PocketFlow /raw/main/assets/meme.jpg?raw=true" width="400"/>
247
+ <img src="https://github.com/the-pocket/.github /raw/main/assets/meme.jpg?raw=true" width="400"/>
248
248
</div>
249
249
250
250
## Core Abstraction
@@ -259,7 +259,7 @@ We model the LLM workflow as a **Graph + Shared Store**:
259
259
- [(Advanced) Parallel](./core_abstraction/parallel.md) nodes/flows handle I/O-bound tasks.
260
260
261
261
<div align="center">
262
- <img src="https://github.com/the-pocket/PocketFlow /raw/main/assets/abstraction.png" width="500"/>
262
+ <img src="https://github.com/the-pocket/.github /raw/main/assets/abstraction.png" width="500"/>
263
263
</div>
264
264
265
265
## Design Pattern
@@ -274,7 +274,7 @@ From there, it’s easy to implement popular design patterns:
274
274
- [(Advanced) Multi-Agents](./design_pattern/multi_agent.md) coordinate multiple agents.
275
275
276
276
<div align="center">
277
- <img src="https://github.com/the-pocket/PocketFlow /raw/main/assets/design.png" width="500"/>
277
+ <img src="https://github.com/the-pocket/.github /raw/main/assets/design.png" width="500"/>
278
278
</div>
279
279
280
280
## Utility Function
@@ -794,7 +794,7 @@ nav_order: 1
794
794
A **Node** is the smallest building block. Each Node has 3 steps `prep->exec->post`:
795
795
796
796
<div align="center">
797
- <img src="https://github.com/the-pocket/PocketFlow /raw/main/assets/node.png?raw=true" width="400"/>
797
+ <img src="https://github.com/the-pocket/.github /raw/main/assets/node.png?raw=true" width="400"/>
798
798
</div>
799
799
800
800
1. `prep(shared)`
@@ -964,7 +964,7 @@ nav_order: 1
964
964
Agent is a powerful design pattern in which nodes can take dynamic actions based on the context.
965
965
966
966
<div align="center">
967
- <img src="https://github.com/the-pocket/PocketFlow /raw/main/assets/agent.png?raw=true" width="350"/>
967
+ <img src="https://github.com/the-pocket/.github /raw/main/assets/agent.png?raw=true" width="350"/>
968
968
</div>
969
969
970
970
## Implement Agent with Graph
@@ -1122,7 +1122,7 @@ MapReduce is a design pattern suitable when you have either:
1122
1122
and there is a logical way to break the task into smaller, ideally independent parts.
1123
1123
1124
1124
<div align="center">
1125
- <img src="https://github.com/the-pocket/PocketFlow /raw/main/assets/mapreduce.png?raw=true" width="400"/>
1125
+ <img src="https://github.com/the-pocket/.github /raw/main/assets/mapreduce.png?raw=true" width="400"/>
1126
1126
</div>
1127
1127
1128
1128
You first break down the task using [BatchNode](../core_abstraction/batch.md) in the map phase, followed by aggregation in the reduce phase.
@@ -1192,7 +1192,7 @@ nav_order: 3
1192
1192
For certain LLM tasks like answering questions, providing relevant context is essential. One common architecture is a **two-stage** RAG pipeline:
1193
1193
1194
1194
<div align="center">
1195
- <img src="https://github.com/the-pocket/PocketFlow /raw/main/assets/rag.png?raw=true" width="400"/>
1195
+ <img src="https://github.com/the-pocket/.github /raw/main/assets/rag.png?raw=true" width="400"/>
1196
1196
</div>
1197
1197
1198
1198
1. **Offline stage**: Preprocess and index documents ("building the index").
@@ -1475,7 +1475,7 @@ nav_order: 2
1475
1475
Many real-world tasks are too complex for one LLM call. The solution is to **Task Decomposition**: decompose them into a [chain](../core_abstraction/flow.md) of multiple Nodes.
1476
1476
1477
1477
<div align="center">
1478
- <img src="https://github.com/the-pocket/PocketFlow /raw/main/assets/workflow.png?raw=true" width="400"/>
1478
+ <img src="https://github.com/the-pocket/.github /raw/main/assets/workflow.png?raw=true" width="400"/>
1479
1479
</div>
1480
1480
1481
1481
> - You don't want to make each task **too coarse**, because it may be *too complex for one LLM call*.
0 commit comments