You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- **`enable_plan_re_evaluator`**: Enable plan re-evaluation (default: false)
109
118
110
119
## Usage
111
120
@@ -171,6 +180,9 @@ agent:
171
180
max_iterations: 5
172
181
enable_reasoning: true
173
182
enable_re_evaluation: true
183
+
enable_planning: true
184
+
enable_mcp_prompts: true
185
+
enable_plan_re_evaluator: true
174
186
```
175
187
176
188
## Agent Configuration Details
@@ -185,10 +197,16 @@ The `agent` section controls how the AI model interacts with MCP tools:
185
197
- **`enable_reasoning`**: When enabled, the agent uses advanced reasoning to better understand tool results and plan next steps.
186
198
- **`enable_re_evaluation`**: When enabled, the agent can re-evaluate previous tool results and decisions, allowing for self-correction and improved accuracy.
187
199
200
+
### Planning Capabilities
201
+
- **`enable_planning`**: When enabled, the agent uses auto-planning to break down complex tasks into manageable steps and execute them systematically. The agent will automatically detect when planning is needed.
202
+
- **`enable_mcp_prompts`**: When enabled, the agent uses specialized prompts exposed by the MCP servers to interact with the exposed tools.
203
+
- **`enable_plan_re_evaluator`**: When enabled, the agent can re-evaluate and adjust its execution plan based on intermediate results.
0 commit comments