Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c4c31a6

Browse files
committedMar 11, 2025
docs: clarify multi-agent orchestration description
1 parent 69797b4 commit c4c31a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎docs/multi_agent.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ This pattern is great when the task is open-ended and you want to rely on the in
2727

2828
## Orchestrating via code
2929

30-
While orchestrating via LLM is powerful, orchestrating via LLM makes tasks more deterministic and predictable, in terms of speed, cost and performance. Common patterns here are:
30+
While orchestrating via LLM is powerful, orchestrating via code makes tasks more deterministic and predictable, in terms of speed, cost and performance. Common patterns here are:
3131

3232
- Using [structured outputs](https://platform.openai.com/docs/guides/structured-outputs) to generate well formed data that you can inspect with your code. For example, you might ask an agent to classify the task into a few categories, and then pick the next agent based on the category.
3333
- Chaining multiple agents by transforming the output of one into the input of the next. You can decompose a task like writing a blog post into a series of steps - do research, write an outline, write the blog post, critique it, and then improve it.

0 commit comments

Comments
 (0)
Please sign in to comment.