Copilot workflow editor using SK planner #5715
-
Not a feature request but rather a question. Was Copilot Studio "edit with copilot" functionality for editing Topics developed using SK? If not, would it be a right approach to use planner to create something similar (basically I have preexisting nodes that I'd like engine to use to construct a logical tree). |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
If you want to recreate similar logic within Semantic Kernel, the first thing you should do, is model each one of the nodes as a Once you want the AI to automatically call your functions, you can use automatic function calling within Semantic Kernel so your LLM can automatically invoke any of your plugins. |
Beta Was this translation helpful? Give feedback.
-
As far as I learn, Copilor can intergrate with Power Automate, then Power Automate can integrate with Sematic Kernel ? |
Beta Was this translation helpful? Give feedback.
If you want to recreate similar logic within Semantic Kernel, the first thing you should do, is model each one of the nodes as a
KernelFuncion
. From there, you can use standard C# (or Python/Java) code to sequentially call each of your functions and passing the input/output from one function to the other.Once you want the AI to automatically call your functions, you can use automatic function calling within Semantic Kernel so your LLM can automatically invoke any of your plugins.