From 8e134146871d321dbe57a7967778e87d1be9f5d1 Mon Sep 17 00:00:00 2001 From: Zachary Huang <33015448+zachary62@users.noreply.github.com> Date: Sun, 16 Mar 2025 19:00:29 -0400 Subject: [PATCH] Update agent.md --- docs/design_pattern/agent.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/design_pattern/agent.md b/docs/design_pattern/agent.md index 8f1e774..3141bd5 100644 --- a/docs/design_pattern/agent.md +++ b/docs/design_pattern/agent.md @@ -58,13 +58,13 @@ The core of building **high-performance** and **reliable** agents boils down to: ## 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