Replies: 1 comment 2 replies
-
For this we don't apply group chat, which requires the agent to share all context. You can implement a map-reduce like pattern using AutoGen Core's API. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In an Autogen GroupChat, what's the best approach for creating a "control tower" that can collect and manage results from all agents? For example, if I have data like [{id1}, {id2}, ..., {id10000}] and multiple agents, how can I coordinate the workflow so:
Agent1 checks all data items, picks some (e.g., id1, id2), and applies fixes.
Agent2 also checks all items, picks different ones (e.g., id3, id4), and applies fixes.
How can the GroupChat coordinate between Agent1 and Agent2, then compile a final list of fixed elements [{id1}, {id2}, {id3}, {id4}]?
Thanks
Beta Was this translation helpful? Give feedback.
All reactions