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.
132
+
-`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.
-`template_langgraph/llms/`: LLM wrappers (Azure OpenAI, Azure AI Foundry, Ollama)
110
137
-`template_langgraph/tools/`: Tool implementations used by agents
111
138
- Azure AI Search (`ai_search_tool.py`)
112
139
- Azure Cosmos DB Vector Search (`cosmosdb_tool.py`)
@@ -242,6 +269,32 @@ uv run python scripts/agent_operator.py image-classifier-agent \
242
269
--verbose
243
270
```
244
271
272
+
### Demo agent runs
273
+
274
+
- Weather agent (simple tool calling):
275
+
276
+
```shell
277
+
uv run python scripts/demo_agents_operator.py weather-agent \
278
+
--query "What's the weather in Japan?" \
279
+
--verbose
280
+
```
281
+
282
+
- Multi agent (agent coordination):
283
+
284
+
```shell
285
+
uv run python scripts/demo_agents_operator.py multi-agent \
286
+
--query "What's the weather in Tokyo?" \
287
+
--verbose
288
+
```
289
+
290
+
- Parallel processor agent (task decomposition):
291
+
292
+
```shell
293
+
uv run python scripts/demo_agents_operator.py parallel-processor-agent \
294
+
--goal "Plan information gathering strategy for launching a software company" \
295
+
--verbose
296
+
```
297
+
245
298
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`).
246
299
247
300
## Key Concepts Demonstrated
@@ -289,6 +342,11 @@ The default toolset is configured in `template_langgraph/tools/common.py` and in
0 commit comments