Skip to content

Commit

Permalink
concepts: reword network architecture (#2625)
Browse files Browse the repository at this point in the history
  • Loading branch information
eyurtsev authored Dec 4, 2024
1 parent 7a326ef commit dad0f39
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions docs/docs/concepts/multi_agent.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,7 @@ There are several ways to connect agents in a multi-agent system:

### Network

In this architecture, agents are defined as graph nodes. Each agent can communicate with every other agent (many-to-many connections) and can decide which agent to call next. While very flexible, this architecture doesn't scale well as the number of agents grows:

- hard to enforce which agent should be called next
- hard to determine how much [information](#shared-message-list) should be passed between the agents

We recommend avoiding this architecture in production and using one of the below architectures instead.
In this architecture, agents are defined as graph nodes. Each agent can communicate with every other agent (many-to-many connections) and can decide which agent to call next. This architecture is good for problems that do not have a clear hierarchy of agents or a specific sequence in which agents should be called.

### Supervisor

Expand Down

0 comments on commit dad0f39

Please sign in to comment.