Skip to content

Commit 0363eb5

Browse files
committed
fix assets location in .cursorrules
1 parent a1c28a2 commit 0363eb5

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.cursorrules

+10-10
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Agentic Coding should be a collaboration between Human System Design and Agent I
5656

5757
3. **Utilities**: Based on the Flow Design, identify and implement necessary utility functions.
5858
- 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>
6060

6161
- Reading inputs (e.g., retrieving Slack messages, reading emails)
6262
- 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
127127

128128
- > **You'll likely iterate a lot!** Expect to repeat Steps 3–6 hundreds of times.
129129
>
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>
131131
{: .best-practice }
132132

133133
8. **Reliability**
@@ -244,7 +244,7 @@ A [100-line](https://github.com/the-pocket/PocketFlow/blob/main/pocketflow/__ini
244244
- **Agentic-Coding**: Intuitive enough for AI agents to help humans build complex LLM applications.
245245

246246
<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"/>
248248
</div>
249249

250250
## Core Abstraction
@@ -259,7 +259,7 @@ We model the LLM workflow as a **Graph + Shared Store**:
259259
- [(Advanced) Parallel](./core_abstraction/parallel.md) nodes/flows handle I/O-bound tasks.
260260

261261
<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"/>
263263
</div>
264264

265265
## Design Pattern
@@ -274,7 +274,7 @@ From there, it’s easy to implement popular design patterns:
274274
- [(Advanced) Multi-Agents](./design_pattern/multi_agent.md) coordinate multiple agents.
275275

276276
<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"/>
278278
</div>
279279

280280
## Utility Function
@@ -794,7 +794,7 @@ nav_order: 1
794794
A **Node** is the smallest building block. Each Node has 3 steps `prep->exec->post`:
795795

796796
<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"/>
798798
</div>
799799

800800
1. `prep(shared)`
@@ -964,7 +964,7 @@ nav_order: 1
964964
Agent is a powerful design pattern in which nodes can take dynamic actions based on the context.
965965

966966
<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"/>
968968
</div>
969969

970970
## Implement Agent with Graph
@@ -1122,7 +1122,7 @@ MapReduce is a design pattern suitable when you have either:
11221122
and there is a logical way to break the task into smaller, ideally independent parts.
11231123

11241124
<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"/>
11261126
</div>
11271127

11281128
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
11921192
For certain LLM tasks like answering questions, providing relevant context is essential. One common architecture is a **two-stage** RAG pipeline:
11931193

11941194
<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"/>
11961196
</div>
11971197

11981198
1. **Offline stage**: Preprocess and index documents ("building the index").
@@ -1475,7 +1475,7 @@ nav_order: 2
14751475
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.
14761476

14771477
<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"/>
14791479
</div>
14801480

14811481
> - You don't want to make each task **too coarse**, because it may be *too complex for one LLM call*.

0 commit comments

Comments
 (0)