Skip to content

Commit 2baba96

Browse files
committed
Update Blog “part-7-how-collaborative-teams-of-agents-unlock-new-intelligence”
1 parent e5ce1e7 commit 2baba96

File tree

1 file changed

+10
-12
lines changed

1 file changed

+10
-12
lines changed

content/blog/part-7-how-collaborative-teams-of-agents-unlock-new-intelligence.md

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Part 7: How Collaborative Teams of Agents Unlock New Intelligence"
2+
title: "Part 7: How Collaborative Teams of Agents unlock new intelligence"
33
date: 2025-07-21T10:34:35.011Z
44
author: Dinesh R Singh
55
authorimage: /img/dinesh-192-192.jpg
@@ -45,7 +45,7 @@ Each returns findings from their ecosystem, which the coordinator blends into a
4545

4646
### 1. Import modules & tools
4747

48-
```import
48+
```python
4949
from textwrap import dedent
5050
from agno.agent import Agent
5151
from agno.models.openai import OpenAIChat
@@ -62,7 +62,7 @@ Each agent is built for platform-specific intelligence gathering.
6262

6363
### Reddit Agent
6464

65-
```
65+
```python
6666
reddit_researcher = Agent(
6767
name="Reddit Researcher",
6868
role="Research a topic on Reddit",
@@ -75,7 +75,7 @@ instructions=dedent("""You are a Reddit researcher..."""),
7575

7676
### HackerNews Agent
7777

78-
```
78+
```python
7979
hackernews_researcher = Agent(
8080
name="HackerNews Researcher",
8181
model=OpenAIChat("gpt-4o"),
@@ -88,7 +88,7 @@ instructions=dedent("""You are a HackerNews researcher..."""),
8888

8989
### Academic Agent
9090

91-
```
91+
```python
9292
academic_paper_researcher = Agent(
9393
name="Academic Paper Researcher",
9494
model=OpenAIChat("gpt-4o"),
@@ -101,7 +101,7 @@ instructions=dedent("""You are an academic researcher..."""),
101101

102102
## Twitter - X Agent
103103

104-
```
104+
```python
105105
twitter_researcher = Agent(
106106
name="Twitter Researcher",
107107
model=OpenAIChat("gpt-4o"),
@@ -115,7 +115,7 @@ instructions=dedent("""You are a Twitter researcher..."""),
115115

116116
### 3. Define the Team
117117

118-
```
118+
```python
119119
agent_team = Team(
120120
name="Discussion Team",
121121
mode="collaborate",
@@ -144,7 +144,7 @@ show_members_responses=True,
144144

145145
### 4. Running the Discussion
146146

147-
```
147+
```python
148148
if __name__ == "__main__":
149149

150150
asyncio.run(
@@ -158,7 +158,7 @@ asyncio.run(
158158

159159
### Example output
160160

161-
```
161+
```python
162162
* Reddit: Focus on project-building and freeCodeCamp
163163
* HackerNews: Start with Python and open-source
164164
* Academia: Reinforce with spaced repetition and mentorship
@@ -170,7 +170,7 @@ asyncio.run(
170170

171171
## Pro Tip: Run Agents in parallel
172172

173-
```
173+
```python
174174
asyncio.run(
175175

176176
agent_team.print_response(
@@ -182,8 +182,6 @@ agent_team.print_response(
182182

183183
Using asyncio ensures agents work simultaneously, which dramatically boosts speed and output quality—especially in research-heavy or time-sensitive use cases.
184184

185-
186-
187185
## Final thought's
188186

189187
Collaborate Mode is more than a clever orchestration pattern—it’s the embodiment of distributed intelligence. By mimicking the structure of human brainstorming, it allows AI to perform with greater breadth, depth, and creativity. With frameworks like AGNO making implementation seamless, the age of intelligent, agent-led collaboration is no longer speculative—it’s operational.

0 commit comments

Comments
 (0)