chore: migrate repository to standard knowledge base layout

This commit is contained in:
tukuaiai
2026-05-02 03:29:06 +08:00
parent 40a721c24d
commit 628a3bc832
565 changed files with 687 additions and 711 deletions
@@ -0,0 +1,20 @@
# Building Effective Agents Cookbook
Reference implementation for [Building Effective Agents](https://anthropic.com/research/building-effective-agents) by Erik Schluntz and Barry Zhang.
This repository contains example minimal implementations of common agent workflows discussed in the blog:
- Basic Building Blocks
- Prompt Chaining
- Routing
- Multi-LLM Parallelization
- Advanced Workflows
- Orchestrator-Subagents
- Evaluator-Optimizer
## Getting Started
See the Jupyter notebooks for detailed examples:
- [Basic Workflows](https://github.com/anthropics/claude-cookbooks/blob/main/patterns/agents/basic_workflows.ipynb)
- [Evaluator-Optimizer Workflow](https://github.com/anthropics/claude-cookbooks/blob/main/patterns/agents/evaluator_optimizer.ipynb)
- [Orchestrator-Workers Workflow](https://github.com/anthropics/claude-cookbooks/blob/main/patterns/agents/orchestrator_workers.ipynb)