AgentGroupChat + KernelFunctionSelectionStrategy + Process Framework #11271
-
Is it currently possible to implement the following scenario using AgentGroupChat? Scenario: Multiple specialized agents collaborating in a group chat, where only one agent is selected to respond to a given user input, based on their capabilities. The selected agent may or may not have processes within them. Example: Hotel Customer Support
All three agents participate in an AgentGroupChat, with agent selection handled by KernelFunctionSelectionStrategy. Question: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hello @jordanschwartz are you looking for help with .Net or Python? In the process framework, it is event-driven, so you'd need some sort of way to emit an event - you could do it explicitly by emitting an event as part of a step's kernel function, or you could handle an "on function result" event where the function result is returned as part of a previous kernel function and a new step handles it. |
Beta Was this translation helpful? Give feedback.
Hello @jordanschwartz are you looking for help with .Net or Python? In the process framework, it is event-driven, so you'd need some sort of way to emit an event - you could do it explicitly by emitting an event as part of a step's kernel function, or you could handle an "on function result" event where the function result is returned as part of a previous kernel function and a new step handles it.