sub agents instead of agent as tools #7190
Mohanr1122
started this conversation in
Ideas
Replies: 1 comment
|
Interesting though. What would the advantage be of connecting "child agents" to a ChatClientAgent? Is it still a parent <-> child agent relationship? Is a childAgentA <-> allowed to talk to childAgentB? If so, we support that in our handoff orchestration pattern now. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Description
Currently, when building hierarchical agent patterns in the .NET implementation of the Microsoft Agent Framework, adding a child/sub-agent to a parent agent requires converting the sub-agent into an
AIFunctionvia.AsAIFunction()and injecting it into the parent'sToolscollection.Proposed Solution
Provide a native way to attach child agents to a parent agent directly, separate from the
Toolscollection. For example:All reactions