Skip to content

Commit e9cae07

Browse files
committed
Update Blog “part-5-agentic-ai-team-coordination-mode-in-action”
1 parent 526bc01 commit e9cae07

File tree

1 file changed

+5
-12
lines changed

1 file changed

+5
-12
lines changed

content/blog/part-5-agentic-ai-team-coordination-mode-in-action.md

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,9 @@ tags:
1212
---
1313
One of the most transformative patterns in Agentic AI is team-based orchestration — a collaborative approach where specialized agents work together to fulfill complex goals. In this edition, we explore Coordinate Mode using the AGNO Framework — a design where a Team Manager delegates, supervises, and integrates the contributions of each agent.
1414

15-
Inspired by a Medium post by Dinesh R
16-
17-
![](/img/screenshot-2025-07-21-at-12.57.22 pm.png)
15+
[Inspired by my Medium post.](https://dineshr1493.medium.com/all-you-need-to-know-about-the-evolution-of-generative-ai-to-agentic-ai-part-5-agentic-ai-a-2d6651c9cc5c)
1816

17+
<center><img src="/img/screenshot-2025-07-21-at-12.57.22 pm.png" width="600" height="550" alt="LLM Mode" title="LLM Mode"></center>
1918

2019
## What Are Agentic AI Teams?
2120

@@ -44,11 +43,8 @@ from agno.models.openai import OpenAIChat
4443
from agno.team.team import Team
4544
from agno.tools.search import DuckDuckGoTools
4645
from agno.tools.read import Newspaper4kTools
47-
4846
```
4947

50-
51-
5248
### Searcher Agent
5349

5450
```
@@ -63,7 +59,6 @@ searcher = Agent(
6359
tools=[DuckDuckGoTools()],
6460
add_datetime_to_instructions=True,
6561
)
66-
6762
```
6863

6964
### Writer Agent
@@ -82,7 +77,6 @@ writer = Agent(
8277
tools=[Newspaper4kTools()],
8378
add_datetime_to_instructions=True,
8479
)
85-
8680
```
8781

8882
### Editor Team (Manager Agent in Coordinate Mode)
@@ -132,7 +126,7 @@ response = editor.run("Write an article about latest developments in AI.")
132126
<td>Enables structured delegation and task flow</td>
133127
</tr>
134128
<tr>
135-
<td><code>members=[...]</code></td>
129+
<td><code>members=\\[...]</code></td>
136130
<td>Assigns role-specific agents</td>
137131
</tr>
138132
<tr>
@@ -165,14 +159,13 @@ strategy_team = Team(
165159
response = strategy_team.run(
166160
"Develop a market entry strategy for our new AI-powered healthcare product"
167161
)
168-
169162
```
170163

171164
This ensures agents not only act — but act with strategic purpose and direction.
172165

173-
![A screenshot of a computer
166+
<center><img src="/img/screenshot-2025-07-21-at-12.57.44 pm.png" width="600" height="550" alt="Agentic AI Parameters" title="Agentic AI Parameters"></center>
167+
174168

175-
AI-generated content may be incorrect.](https://lh7-rt.googleusercontent.com/docsz/AD_4nXeozc8krAlw2Fv3tJ0XA0UQ0mWQHg18re_uMmiOQWm74S61dPhbmt2CHkPE3K3yrKonk1wILiSRsOIWzE-eqBEfSQ7y1uEkEL0Ss5_7JPxfLLogREgJg9yyTVemIED2SxNkc69T?key=H68knZDq8LPblpx1flSBtQ)
176169

177170

178171
## Conclusion

0 commit comments

Comments
 (0)