Skip to content

Commit 28e9ee5

Browse files
committed
Update Blog “part-5-agentic-ai-team-coordination-mode-in-action”
1 parent 4672b40 commit 28e9ee5

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Part 5: Agentic AI: Team Coordination Mode in Action"
2+
title: "Part 5: Agentic AI: Team Coordination Mode in action"
33
date: 2025-07-21T07:24:24.522Z
44
author: Dinesh R Singh
55
authorimage: /img/dinesh-192-192.jpg
@@ -45,7 +45,7 @@ Let’s examine a professional-grade configuration of a New York Times-style edi
4545

4646
### Imports
4747

48-
```
48+
```python
4949
from agno.agent import Agent
5050
from agno.models.openai import OpenAIChat
5151
from agno.team.team import Team
@@ -55,7 +55,7 @@ from agno.tools.read import Newspaper4kTools
5555

5656
### Searcher Agent
5757

58-
```
58+
```python
5959
searcher = Agent(
6060
name="Searcher",
6161
role="Searches the top URLs for a topic",
@@ -71,7 +71,7 @@ searcher = Agent(
7171

7272
### Writer Agent
7373

74-
```
74+
```python
7575
writer = Agent(
7676
name="Writer",
7777
role="Writes a high-quality article",
@@ -89,7 +89,7 @@ writer = Agent(
8989

9090
### Editor Team (Manager Agent in Coordinate Mode)
9191

92-
```
92+
```python
9393
editor = Team(
9494
name="Editor",
9595
mode="coordinate",
@@ -111,7 +111,7 @@ editor = Team(
111111

112112
### Running the Team
113113

114-
```
114+
```python
115115
Method 1: Print output directly
116116
editor.print_response("Write an article about latest developments in AI.")
117117

@@ -134,7 +134,7 @@ response = editor.run("Write an article about latest developments in AI.")
134134
<td>Enables structured delegation and task flow</td>
135135
</tr>
136136
<tr>
137-
<td><code>members=\\\[...]</code></td>
137+
<td><code>members=\\\\[...]</code></td>
138138
<td>Assigns role-specific agents</td>
139139
</tr>
140140
<tr>
@@ -156,7 +156,7 @@ response = editor.run("Write an article about latest developments in AI.")
156156

157157
Adding success_criteria helps agents align their efforts with measurable outcomes.
158158

159-
```
159+
```python
160160
strategy_team = Team(
161161
members=[market_analyst, competitive_analyst, strategic_planner],
162162
mode="coordinate",

0 commit comments

Comments
 (0)