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
-`multi_agent.py` — Multi-agent coordination. Demonstrates agent-to-agent handoff using transfer functions. Key: agent coordination, workflow transfer.
116
+
-`parallel_processor_agent/` — Task decomposition with parallel execution. Breaks down goals into tasks and processes them in parallel. Key: parallel processing, task decomposition, Send operations.
@@ -242,8 +253,36 @@ uv run python scripts/agent_operator.py image-classifier-agent \
242
253
--verbose
243
254
```
244
255
256
+
### Demo agent runs
257
+
258
+
- Weather agent (simple tool calling):
259
+
260
+
```shell
261
+
uv run python scripts/demo_agents_operator.py weather-agent \
262
+
--query "What's the weather in Japan?" \
263
+
--verbose
264
+
```
265
+
266
+
- Multi agent (agent coordination):
267
+
268
+
```shell
269
+
uv run python scripts/demo_agents_operator.py multi-agent \
270
+
--query "What's the weather in Tokyo?" \
271
+
--verbose
272
+
```
273
+
274
+
- Parallel processor agent (task decomposition):
275
+
276
+
```shell
277
+
uv run python scripts/demo_agents_operator.py parallel-processor-agent \
278
+
--goal "Plan information gathering strategy for launching a software company" \
279
+
--verbose
280
+
```
281
+
245
282
Makefile shortcuts are also available (e.g., `make run-chat-with-tools-agent`, `make run-issue-formatter-agent`, `make run-news-summarizer-agent`, `make run-image-classifier-agent`).
0 commit comments