Agent
Last updated
Last updated
Agent is a powerful design pattern in which nodes can take dynamic actions based on the context.
Context and Action: Implement nodes that supply context and perform actions.
Agent Node: Provide a prompt to decide action—for example:
The core of building high-performance and reliable agents boils down to:
Action Space: Provide a well-structured and unambiguous set of actions—avoiding overlap like separate read_databases
or read_csvs
. Instead, import CSVs into the database.
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).
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.
This agent:
Decides whether to search or answer
If searches, loops back to decide if more search needed
Answers when enough context gathered
Branching: Use branching to connect each action node to an agent node. Use action to allow the agent to direct the between nodes—and potentially loop back for multi-step.
Context Management: Provide relevant, minimal context. For example, rather than including an entire chat history, retrieve the most relevant via . Even with larger context windows, LLMs still fall victim to , overlooking mid-prompt content.