Replies: 1 comment
-
I found a solution. Short version:
|
Beta Was this translation helpful? Give feedback.
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.
-
Hello, I have a bit of a special question.
I am using a
ChatCompletionAgent
(source) with multiple Plugins. One of the Plugins uses anAzureAIAgent
(source) to execute things like code interpreter on the AI Foundry. This Plugin returns its result as string.Now the issue I have. Semantic Kernel responds with a FunctionCall to my Plugin. The
AzureAIAgent
itself also does Function Calls (e.g. the code interpreter). Is it possible to add these functions calls to the response of theChatCompletionsAgent
so that I can catch them via theon_intermediate_message
?I know, technically they are different things so I would somehow need to get the correct Semantic Kernel object / function / whater is needed on Plugin level.
I already tried with with prompting so returning the complete RunSteps from the thread but Semantic Kernel ignored it basically. I also tried to use
GroupChat
but this didn't work out for us so I don't see it as a solution.Happy about any hints :)
Beta Was this translation helpful? Give feedback.
All reactions