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
feat: Implement multi-agent Chain of Thought system
- Add specialized agents (Planner, Research, Reasoning, Synthesis)
- Modify RAG and LocalRAG agents to use multi-agent CoT
- Add test file for multi-agent system
- Update README with new CoT documentation
- Make local model the default option
Copy file name to clipboardExpand all lines: agentic_rag/README.md
+63-25Lines changed: 63 additions & 25 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -190,50 +190,88 @@ python rag_agent.py --query "Can you explain the DaGAN Approach proposed in the
190
190
191
191
## 2. Chain of Thought (CoT) Support
192
192
193
-
The system implements Chain of Thought prompting, allowing the LLMs to break down complex queries into steps and show their reasoning process. This feature can be activated in several ways:
193
+
The system implements an advanced multi-agent Chain of Thought system, allowing complex queries to be broken down and processed through multiple specialized agents. This feature enhances the reasoning capabilities of both local and cloud-based models.
194
194
195
-
### 1. Using the API
195
+
### Multi-Agent System
196
196
197
+
The CoT system consists of four specialized agents:
198
+
199
+
1. **Planner Agent**: Breaks down complex queries into clear, manageable steps
200
+
2. **Research Agent**: Gathers and analyzes relevant information from knowledge bases
201
+
3. **Reasoning Agent**: Applies logical analysis to information and draws conclusions
202
+
4. **Synthesis Agent**: Combines multiple pieces of information into a coherent response
203
+
204
+
### Using CoT
205
+
206
+
You can activate the multi-agent CoT system in several ways:
0 commit comments