Update agent.md

This commit is contained in:
Zachary Huang 2025-03-16 19:00:29 -04:00 committed by GitHub
parent fa1811ad50
commit 8e13414687
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 4 deletions

View File

@ -58,13 +58,13 @@ The core of building **high-performance** and **reliable** agents boils down to:
## Example Good Action Design ## Example Good Action Design
**Incremental:** Feed content in manageable chunks (500 lines or 1 page) instead of all at once. - **Incremental:** Feed content in manageable chunks (500 lines or 1 page) instead of all at once.
**Overview-zoom-in:** First provide high-level structure (table of contents, summary), then allow drilling into details (raw texts). - **Overview-zoom-in:** First provide high-level structure (table of contents, summary), then allow drilling into details (raw texts).
**Parameterized/Programmable:** Instead of fixed actions, enable parameterized (columns to select) or programmable (SQL queries) actions, for example, to read CSV files. - **Parameterized/Programmable:** Instead of fixed actions, enable parameterized (columns to select) or programmable (SQL queries) actions, for example, to read CSV files.
**Backtracking:** Let the agent undo the last step instead of restarting entirely, preserving progress when encountering errors or dead ends. - **Backtracking:** Let the agent undo the last step instead of restarting entirely, preserving progress when encountering errors or dead ends.
## Example: Search Agent ## Example: Search Agent