update utility image

This commit is contained in:
zachary62 2025-03-03 01:23:32 -05:00
parent 30b647c0ed
commit 98237bffa8
2 changed files with 5 additions and 5 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 132 KiB

After

Width:  |  Height:  |  Size: 135 KiB

View File

@ -28,14 +28,14 @@ These system designs should be a collaboration between humans and AI assistants:
1. **Project Requirements**: Clearify the requirements for your project. 1. **Project Requirements**: Clearify the requirements for your project.
2. **Utility Functions**: Although the AI system is the decision-maker, it relies on **external utility functions**: 2. **Utility Functions**: AI system is the decision-maker and relies on *external utility functions* to:
<div align="center"><img src="https://github.com/the-pocket/PocketFlow/raw/main/assets/utility.png?raw=true" width="400"/></div> <div align="center"><img src="https://github.com/the-pocket/PocketFlow/raw/main/assets/utility.png?raw=true" width="400"/></div>
- Reading inputs (e.g., retrieving Slack messages, reading emails) - Read inputs (e.g., retrieving Slack messages, reading emails)
- Writing outputs (e.g., generating reports, sending emails) - Write outputs (e.g., generating reports, sending emails)
- External tool usage (e.g., calling LLMs, searching the web) - Use external tools (e.g., calling LLMs, searching the web)
- **LLM-based tasks** (e.g., summarizing text, analyzing sentiment) are **not** utility functions. Instead, they are *internal core functions* within the AI system—designed in step 3—and are built on top of the utility functions. - In contrast, *LLM-based tasks* (e.g., summarizing text, analyzing sentiment) are **NOT** utility functions. Instead, they are *internal core functions* within the AI system—designed in step 3—and are built on top of the utility functions.
- > **Start small!** Only include the most important ones to begin with! - > **Start small!** Only include the most important ones to begin with!
{: .best-practice } {: .best-practice }