reasoning agent router docs

pull/814/merge
Kye Gomez 1 month ago
parent c2915be5ca
commit c64f75bc77

@ -1,6 +1,7 @@
# ReasoningAgentRouter Documentation # ReasoningAgentRouter
The ReasoningAgentRouter is a sophisticated agent routing system that enables dynamic selection and execution of different reasoning strategies based on the task requirements. It provides a flexible interface to work with multiple reasoning approaches including Reasoning Duo, Self-Consistency, and Iterative Reflective Expansion (IRE). !!! abstract "Overview"
The ReasoningAgentRouter is a sophisticated agent routing system that enables dynamic selection and execution of different reasoning strategies based on the task requirements. It provides a flexible interface to work with multiple reasoning approaches including Reasoning Duo, Self-Consistency, IRE (Iterative Reflective Expansion), Reflexion, GKP (Generated Knowledge Prompting), and Agent Judge.
## Architecture ## Architecture
@ -11,55 +12,200 @@ graph TD
SelectSwarm -->|Reasoning Duo| RD[ReasoningDuo] SelectSwarm -->|Reasoning Duo| RD[ReasoningDuo]
SelectSwarm -->|Self Consistency| SC[SelfConsistencyAgent] SelectSwarm -->|Self Consistency| SC[SelfConsistencyAgent]
SelectSwarm -->|IRE| IRE[IterativeReflectiveExpansion] SelectSwarm -->|IRE| IRE[IterativeReflectiveExpansion]
SelectSwarm -->|Reflexion| RF[ReflexionAgent]
SelectSwarm -->|GKP| GKP[GKPAgent]
SelectSwarm -->|Agent Judge| AJ[AgentJudge]
RD --> Output[Task Output] RD --> Output[Task Output]
SC --> Output SC --> Output
IRE --> Output IRE --> Output
RF --> Output
GKP --> Output
AJ --> Output
``` ```
## Class: ReasoningAgentRouter ## Configuration
### Arguments ### Arguments
!!! info "Constructor Parameters"
| Argument | Type | Default | Description | | Argument | Type | Default | Description |
|----------|------|---------|-------------| |----------|------|---------|-------------|
| agent_name | str | "reasoning_agent" | Name identifier for the agent | | `agent_name` | str | "reasoning_agent" | Name identifier for the agent |
| description | str | "A reasoning agent..." | Description of the agent's capabilities | | `description` | str | "A reasoning agent..." | Description of the agent's capabilities |
| model_name | str | "gpt-4o-mini" | The underlying language model to use | | `model_name` | str | "gpt-4o-mini" | The underlying language model to use |
| system_prompt | str | "You are a helpful..." | System prompt for the agent | | `system_prompt` | str | "You are a helpful..." | System prompt for the agent |
| max_loops | int | 1 | Maximum number of reasoning loops | | `max_loops` | int | 1 | Maximum number of reasoning loops |
| swarm_type | agent_types | "reasoning_duo" | Type of reasoning swarm to use | | `swarm_type` | agent_types | "reasoning_duo" | Type of reasoning swarm to use |
| num_samples | int | 1 | Number of samples for self-consistency | | `num_samples` | int | 1 | Number of samples for self-consistency |
| output_type | OutputType | "dict" | Format of the output | | `output_type` | OutputType | "dict" | Format of the output |
| `num_knowledge_items` | int | 6 | Number of knowledge items for GKP agent |
| `memory_capacity` | int | 6 | Memory capacity for agents that support it |
### Methods ### Available Agent Types
| Method | Description | !!! note "Supported Types"
|--------|-------------| The following agent types are supported through the `swarm_type` parameter:
| select_swarm() | Selects and initializes the appropriate reasoning swarm based on specified type |
| run(task: str) | Executes the selected swarm's reasoning process on the given task | - `"reasoning-duo"` or `"reasoning-agent"`
| batched_run(tasks: List[str]) | Executes the reasoning process on a batch of tasks | - `"self-consistency"` or `"consistency-agent"`
- `"ire"` or `"ire-agent"`
- `"ReflexionAgent"`
- `"GKPAgent"`
- `"AgentJudge"`
### Agent Types Comparison
=== "Reasoning Duo"
**Key Features**
- Dual agent system
- Collaborative reasoning
- Split between reasoning and execution
**Best Use Cases**
- Complex tasks requiring both analysis and action
- Multi-step problem solving
- Tasks needing verification
**Required Parameters**
- model_name (list of 2)
- system_prompt
**Optional Parameters**
- output_type
=== "Self Consistency"
**Key Features**
- Multiple solution generation
- Consensus building
- Solution verification
**Best Use Cases**
- Tasks requiring high reliability
- Problems with multiple approaches
- Validation-heavy tasks
**Required Parameters**
- model_name
- system_prompt
**Optional Parameters**
- num_samples
- max_loops
- output_type
=== "IRE"
**Key Features**
- Iterative improvement
- Self-reflection
- Progressive refinement
**Best Use Cases**
- Complex reasoning tasks
- Problems requiring refinement
- Learning from previous iterations
**Required Parameters**
- model_name
- system_prompt
**Optional Parameters**
- max_loops
- max_iterations
- output_type
=== "ReflexionAgent"
**Key Features**
- Self-reflection capabilities
- Learning from experience
- Adaptive reasoning
**Best Use Cases**
- Tasks requiring introspection
- Continuous improvement scenarios
- Learning-based tasks
**Required Parameters**
- model_name
- system_prompt
**Optional Parameters**
- max_loops
=== "GKPAgent"
**Key Features**
- Knowledge generation
- Information synthesis
- Knowledge base management
**Best Use Cases**
### Swarm Types - Knowledge-intensive tasks
- Information gathering
- Research-based problems
1. **ReasoningDuo** **Required Parameters**
- Uses two agents working together
- One for reasoning, one for execution
- Best for tasks requiring both analysis and action
2. **SelfConsistencyAgent** - model_name
- Generates multiple samples - num_knowledge_items
- Ensures consistency across reasoning paths
- Ideal for tasks requiring high reliability
3. **IterativeReflectiveExpansion (IRE)** **Optional Parameters**
- Uses iterative refinement
- Reflects on and improves reasoning paths
- Best for complex problem-solving
## Usage Examples - memory_capacity
### Basic Usage === "AgentJudge"
**Key Features**
- Solution evaluation
- Quality assessment
- Decision making
**Best Use Cases**
- Quality control tasks
- Solution validation
- Performance evaluation
**Required Parameters**
- model_name
- system_prompt
**Optional Parameters**
- max_loops
## Usage
### Methods
!!! tip "Available Methods"
| Method | Description |
|--------|-------------|
| `select_swarm()` | Selects and initializes the appropriate reasoning swarm based on specified type |
| `run(task: str)` | Executes the selected swarm's reasoning process on the given task |
| `batched_run(tasks: List[str])` | Executes the reasoning process on a batch of tasks |
### Code Examples
=== "Basic Usage"
```python ```python
from swarms.agents.reasoning_agents import ReasoningAgentRouter from swarms.agents.reasoning_agents import ReasoningAgentRouter
@ -79,87 +225,79 @@ router = ReasoningAgentRouter(
result = router.run("What is the best approach to solve this problem?") result = router.run("What is the best approach to solve this problem?")
``` ```
### Batch Processing === "ReflexionAgent"
```python
# Process multiple tasks
tasks = [
"What is the optimal solution for X?",
"How should we approach problem Y?"
]
results = router.batched_run(tasks)
```
### Using Different Swarm Types
#### ReasoningDuo
```python ```python
router = ReasoningAgentRouter( router = ReasoningAgentRouter(
swarm_type="reasoning-duo", swarm_type="ReflexionAgent",
max_loops=3,
model_name="gpt-4o-mini" model_name="gpt-4o-mini"
) )
``` ```
#### Self-Consistency === "GKPAgent"
```python ```python
router = ReasoningAgentRouter( router = ReasoningAgentRouter(
swarm_type="self-consistency", swarm_type="GKPAgent",
num_samples=3, model_name="gpt-4o-mini",
model_name="gpt-4o-mini" num_knowledge_items=6
) )
``` ```
#### IRE === "AgentJudge"
```python ```python
router = ReasoningAgentRouter( router = ReasoningAgentRouter(
swarm_type="ire", swarm_type="AgentJudge",
max_loops=5, model_name="gpt-4o-mini",
model_name="gpt-4o-mini" max_loops=2
) )
``` ```
## Best Practices ## Best Practices
!!! tip "Optimization Tips"
1. **Swarm Type Selection** 1. **Swarm Type Selection**
- Use ReasoningDuo for tasks requiring both analysis and action - Use ReasoningDuo for tasks requiring both analysis and action
- Use SelfConsistency for tasks requiring high reliability - Use SelfConsistency for tasks requiring high reliability
- Use IRE for complex problem-solving requiring iterative refinement - Use IRE for complex problem-solving requiring iterative refinement
2. **Performance Optimization** 2. **Performance Optimization**
- Adjust max_loops based on task complexity - Adjust max_loops based on task complexity
- Increase num_samples for higher reliability - Increase num_samples for higher reliability
- Choose appropriate model_name based on task requirements - Choose appropriate model_name based on task requirements
3. **Output Handling** 3. **Output Handling**
- Use appropriate output_type for your needs - Use appropriate output_type for your needs
- Process batched results appropriately
- Handle errors gracefully
## Error Handling - Process batched results appropriately
The ReasoningAgentRouter includes built-in error handling for: - Handle errors gracefully
- Invalid swarm types
- Model execution failures
- Task processing errors
## Limitations ## Limitations
!!! warning "Known Limitations"
1. Processing time increases with: 1. Processing time increases with:
- Higher num_samples - Higher num_samples
- Larger max_loops - Larger max_loops
- More complex tasks - More complex tasks
2. Model-specific limitations based on: 2. Model-specific limitations based on:
- Token limits - Token limits
- Model capabilities - Model capabilities
- API rate limits - API rate limits
## Contributing ## Contributing
!!! note "Development Guidelines"
When extending the ReasoningAgentRouter: When extending the ReasoningAgentRouter:
1. Follow the existing swarm interface 1. Follow the existing swarm interface
2. Add comprehensive tests 2. Add comprehensive tests
3. Update documentation 3. Update documentation

Loading…
Cancel
Save